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.
29 lines
524 B
Java
29 lines
524 B
Java
package com.example.duplicate.controller.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @ClassName CommomtableCopy
|
|
* @Author linjj
|
|
* @Date 2023/11/10 16:01
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
public class CommomtableCopyVo {
|
|
|
|
private String id;
|
|
private String name;
|
|
private String inpatientNo;
|
|
private String admissTimes;
|
|
private String disDate;
|
|
private String pageNumber;
|
|
private String inpatientNoPast;
|
|
private String disDept;
|
|
private String ph;
|
|
|
|
private String phString;
|
|
|
|
private int spilStatic;
|
|
|
|
}
|