You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
350 B
Java
17 lines
350 B
Java
package com.docus.bgts.entity;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@ApiModel("手麻采集器")
|
|
public class VDocumentPdf {
|
|
private String 手术申请单号;
|
|
private String 文书名;
|
|
private String WEB_ADDRESS;
|
|
private String PATIENT_ID;
|
|
private Date ARCHIVE_DATE_TIME;
|
|
}
|