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/ctqyy/PresInfoEntity.java

47 lines
1.2 KiB
Java

package com.glxp.mipsdl.entity.ctqyy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "V_YPZS_PRES_INFO")
public class PresInfoEntity {
@TableField("TABLE_TYPE")
private String tableType;
@TableField("LAYPHYSIC_NO")
private String layphysicNo;
@TableField("PRESCRIBE_NUMBER")
private String prescribeNumber;
@TableField("PRESCRIBE_SUB_NUMBER")
private String prescribeSubNumber;
@TableField("LAY_PHYSIC_TIME")
private String layPhysicTime;
@TableField("STORAGE_CODE")
private String storageCode;
@TableField("STORAGE_NAME")
private String storageName;
@TableField("SICK_ID")
private String sickId;
@TableField("RESIDENCE_NO")
private String residenceNo;
@TableField("PHYSIC_CODE")
private String physicCode;
@TableField("PHYSIC_NAME")
private String physicName;
@TableField("LAY_PHYSIC_QUANTITY")
private String layPhysicQuantity;
@TableField("PHYSIC_UNIT")
private String physicUnit;
@TableField("COST")
private String cost;
@TableField("PACK_SPEC")
private String packSpec;
@TableField("STOOUT_NO")
private String stooutNo;
}