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.
134 lines
2.3 KiB
Java
134 lines
2.3 KiB
Java
2 years ago
|
package com.glxp.api.entity.basic;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
2 years ago
|
|
||
2 years ago
|
import java.io.Serializable;
|
||
|
import java.math.BigDecimal;
|
||
2 years ago
|
|
||
2 years ago
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
2 years ago
|
* 处方关联的耗材信息表
|
||
|
*
|
||
2 years ago
|
* @TableName basic_sk_prescribe_item_detail
|
||
|
*/
|
||
2 years ago
|
@TableName(value = "basic_sk_prescribe_item_detail")
|
||
2 years ago
|
@Data
|
||
2 years ago
|
public class BasicSkPrescribeDiEntity implements Serializable {
|
||
2 years ago
|
/**
|
||
2 years ago
|
*
|
||
2 years ago
|
*/
|
||
|
@TableId(value = "id")
|
||
2 years ago
|
private Long id;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 项目组套外键
|
||
|
*/
|
||
|
@TableField(value = "pId")
|
||
|
private Long pId;
|
||
|
|
||
|
/**
|
||
|
* 患者编码
|
||
|
*/
|
||
|
@TableField(value = "sickerCode")
|
||
|
private String sickerCode;
|
||
|
|
||
|
/**
|
||
|
* 处方编码
|
||
|
*/
|
||
|
@TableField(value = "prescribeCode")
|
||
|
private String prescribeCode;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 住院号
|
||
|
*/
|
||
|
@TableField(value = "adNum")
|
||
|
private String adNum;
|
||
|
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 耗材产品id
|
||
|
*/
|
||
|
@TableField(value = "relId")
|
||
|
private Long relId;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* DI标识
|
||
|
*/
|
||
|
@TableField(value = "nameCode")
|
||
|
private String nameCode;
|
||
|
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 耗材名称
|
||
|
*/
|
||
|
@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;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 数量
|
||
|
*/
|
||
|
@TableField(value = "count")
|
||
|
private Integer count;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 价格
|
||
|
*/
|
||
|
@TableField(value = "price")
|
||
|
private BigDecimal price;
|
||
|
|
||
|
/**
|
||
|
* 规格型号
|
||
|
*/
|
||
|
@TableField(value = "ggxh")
|
||
|
private String ggxh;
|
||
|
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
@TableField(value = "remark")
|
||
|
private String remark;
|
||
|
|
||
2 years ago
|
/**
|
||
|
* 总金额
|
||
|
*/
|
||
|
@TableField(value = "amount")
|
||
|
private BigDecimal amount;
|
||
|
|
||
2 years ago
|
@TableField(exist = false)
|
||
2 years ago
|
private static final long serialVersionUID = 1L;
|
||
2 years ago
|
}
|