| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | |
| | | /** |
| | | * 样品负责人记录 |
| | |
| | | /** |
| | | * 1:确认 0:未确认 |
| | | */ |
| | | |
| | | //1是复核人 0是检验人 |
| | | private Integer state; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | |
| | | public InsSampleUser(Integer insSampleId, Integer userId, Integer state) { |
| | | /** |
| | | * 子试验室 |
| | | * @param insSampleId |
| | | * @param userId |
| | | * @param state |
| | | */ |
| | | private String sonLaboratory; |
| | | |
| | | public InsSampleUser(Integer insSampleId, Integer userId, Integer state,String sonLaboratory) { |
| | | this.insSampleId = insSampleId; |
| | | this.userId = userId; |
| | | this.state = state; |
| | | this.sonLaboratory = sonLaboratory; |
| | | } |
| | | } |