| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | |
| | | /** |
| | | * 对应product_order_detail表中的id |
| | | */ |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | /** |
| | | * 对应product_order表中的id |
| | | */ |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long orderId; |
| | | /** |
| | | * 产品/明细ID |
| | | */ |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long proId; |
| | | /** |
| | | * 产品类型 |
| | | */ |
| | | private Integer proType; |
| | | /** |
| | | * 产品/明细名称 |
| | | */ |
| | | private String proName; |
| | | /** |
| | | * 医院id |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long hospitalId; |
| | | /** |
| | | * 医院名称 |
| | | */ |
| | | private String hospitalName; |
| | | /** |
| | | * 科室id |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long departmentId; |
| | | /** |
| | | * 科室名称 |
| | | */ |
| | |
| | | /** |
| | | * 有效的开始时间 |
| | | */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date proBegintime; |
| | | /** |
| | | * 有效的结束时间 |
| | | */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date proEndtime; |
| | | /** |
| | | *创建时间 |
| | | */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | /** |
| | | * 是否删除,1删除,0未删除 |
| | |
| | | * 状态,1启用,0停用 |
| | | */ |
| | | private Boolean enabled; |
| | | |
| | | /** |
| | | * 使用状态 |
| | | */ |
| | | private String useType; |
| | | } |