96 lines
1.6 KiB
Java
96 lines
1.6 KiB
Java
package com.grail.interrogation.domain;
|
||
|
||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
import lombok.Data;
|
||
import org.springframework.format.annotation.DateTimeFormat;
|
||
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* 药品的详情表
|
||
* @author: SIKADI
|
||
* @date: 2023/10/26 13:54
|
||
**/
|
||
@Data
|
||
public class MedicineDetail {
|
||
|
||
/**
|
||
* 药品id
|
||
**/
|
||
private Integer medicineId;
|
||
|
||
/**
|
||
* 标题
|
||
**/
|
||
private String medicineName;
|
||
|
||
/**
|
||
* 药品成分
|
||
**/
|
||
private String ingredient;
|
||
|
||
/**
|
||
* 用药禁忌
|
||
**/
|
||
private Integer medicineAvoid;
|
||
|
||
/**
|
||
* 功能主治
|
||
**/
|
||
private String majorFunction;
|
||
|
||
/**
|
||
* 用法用量
|
||
**/
|
||
private String usageAndDosage;
|
||
|
||
/**
|
||
* 药品性状
|
||
**/
|
||
private String characterTwo;
|
||
|
||
/**
|
||
* 包装规格
|
||
**/
|
||
private String packageSpecification;
|
||
|
||
/**
|
||
* 不良反应
|
||
**/
|
||
private String adverseReaction;
|
||
|
||
/**
|
||
* 创建人
|
||
**/
|
||
private Integer createId;
|
||
|
||
/**
|
||
* 创建时间
|
||
**/
|
||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
||
private Date createTime;
|
||
|
||
/**
|
||
* 修改人
|
||
**/
|
||
private Integer updateId;
|
||
|
||
/**
|
||
* 修改时间
|
||
**/
|
||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
||
private Date updateTime;
|
||
|
||
/**
|
||
* 1是提交,2是审核中,3是通过,4审核驳回
|
||
**/
|
||
private Integer status;
|
||
|
||
/**
|
||
* 图片
|
||
**/
|
||
private String image;
|
||
}
|