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

134 lines
2.3 KiB
Java

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;
import java.io.Serializable;
import java.math.BigDecimal;
import lombok.Data;
/**
*
*
2 years ago
* @TableName basic_sk_prescribe_item_detail
*/
@TableName(value = "basic_sk_prescribe_item_detail")
@Data
public class BasicSkPrescribeDiEntity implements Serializable {
2 years ago
/**
*
2 years ago
*/
@TableId(value = "id")
private Long id;
2 years ago
/**
*
*/
@TableField(value = "pId")
private Long 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;
2 years ago
/**
*
*/
@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;
2 years ago
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}