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-java/src/main/java/com/glxp/api/entity/basic/BasicSkPrescribeDiEntity.java

151 lines
2.6 KiB
Java

package com.glxp.api.entity.basic;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* 处方关联的耗材信息表
*
* @TableName basic_sk_prescribe_item_detail
*/
@TableName(value = "basic_sk_prescribe_item_detail")
@Data
public class BasicSkPrescribeDiEntity implements Serializable {
/**
*
*/
@TableId(value = "id")
private Long id;
/**
* 项目组套外键
*/
@TableField(value = "pId")
private String pId;
/**
* 患者编码
*/
@TableField(value = "sickerCode")
private String sickerCode;
/**
* 处方编码
*/
@TableField(value = "prescribeCode")
private String prescribeCode;
/**
* 住院号
*/
@TableField(value = "adNum")
private String adNum;
/**
* 耗材产品id
*/
@TableField(value = "relId")
private Long relId;
// /**
// * DI标识
// */
// @TableField(value = "nameCode")
// private String nameCode;
/**
* 耗材名称
*/
@TableField(value = "thrName")
private String thrName;
/**
* 耗材编码
*/
@TableField(value = "thrCode")
private String thrCode;
/**
* 计量数量
*/
@TableField(value = "measureCount")
private String measureCount;
/**
* 计量单位
*/
@TableField(value = "measureUnit")
private String measureUnit;
/**
* 类别
*/
@TableField(value = "category")
private String category;
/**
* 频率
*/
@TableField(value = "frequency")
private String frequency;
/**
* 数量
*/
@TableField(value = "count")
private Integer count;
/**
* 价格
*/
@TableField(value = "price")
private BigDecimal price;
/**
* 规格型号
*/
@TableField(value = "ggxh")
private String ggxh;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
/**
* 总金额
*/
@TableField(value = "amount")
private BigDecimal amount;
@TableField(value = "updateTime")
private Date updateTime;
/**
* 实际数量
*/
@TableField(exist = false)
private Integer realCount;
/**
* 实际价格
*/
@TableField(exist = false)
private BigDecimal realPrice;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}