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.
udi-wms-third-java/src/main/java/com/glxp/mipsdl/entity/hlhyxyy/VA010.java

52 lines
1.2 KiB
Java

package com.glxp.mipsdl.entity.hlhyxyy;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
*
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "v_a010")
public class VA010 implements Serializable {
@TableField(value = "CODE")
private String code;
@TableField(value = "SICKCODE")
private String sickcode;
@TableField(value = "SICKNAME")
private String sickname;
@TableField(value = "PRESCRIBEDATE")
private String prescribedate;
@TableField(value = "CREATEDR")
private String createdr;
@TableField(value = "AMOUNT")
private String amount;
@TableField(value = "DEPTCODE")
private String deptcode;
@TableField(value = "DEPTNAME")
private String deptname;
@TableField(value = "DIAGNOSIS")
private String diagnosis;
@TableField(value = "REMARK")
private String remark;
private static final long serialVersionUID = 1L;
}