| | |
| | | @NotEmpty(message = "是否删除,1删除,0未删除不能为空") |
| | | private Boolean isDel; |
| | | /** |
| | | * 产品的读片总量 |
| | | */ |
| | | @NotNull(message = "产品的读片总量") |
| | | private Integer orderAilightCount; |
| | | /** |
| | | * 产品的报告总量 |
| | | */ |
| | | @NotNull(message = "产品的报告总量") |
| | | private Integer orderRecordCount; |
| | | /** |
| | | * 读片量 |
| | | */ |
| | | @NotNull(message = "读片量不能为空") |
| | | private Integer ailightCount; |
| | | /** |
| | | * 读片量加密串 |
| | | */ |
| | | private String ailightCountEncryption; |
| | | |
| | | /** |
| | | * 报告量 |
| | | */ |
| | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date proBegintime; |
| | | /** |
| | | * 有效的开始时间加密串 |
| | | */ |
| | | private String proBegintimeEncryption; |
| | | |
| | | /** |
| | | * 有效的结束时间 |
| | | */ |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date proEndtime; |
| | | /** |
| | | * 有效的结束时间加密串 |
| | | */ |
| | | private String proEndtimeEncryption; |
| | | |
| | | /** |
| | | * 状态,1启用,0停用 |
| | | */ |
| | | private Boolean enabled; |