| | |
| | | package com.yuanchu.mom.dto; |
| | | |
| | | import com.yuanchu.mom.annotation.ValueTableShow; |
| | | import com.yuanchu.mom.common.OrderBy; |
| | | import com.yuanchu.mom.pojo.InsReport; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.Size; |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | | public class ReportPageDto extends InsReport implements Serializable { |
| | | |
| | | @ValueTableShow(2) |
| | | @ApiModelProperty(value = "委托编号") |
| | | @ValueTableShow(value = 2,name = "委托编号") |
| | | private String entrustCode; |
| | | |
| | | @ApiModelProperty(value = "样品编号") |
| | | @ValueTableShow(value = 2,name = "样品编号") |
| | | private String sampleCode; |
| | | |
| | | @ValueTableShow(value = 3,name = "提交人") |
| | | private String writeUserName; |
| | |
| | | @ValueTableShow(value = 6,name = "审核人") |
| | | private String examineUser; |
| | | |
| | | //实验室id |
| | | private Integer labId; |
| | | |
| | | private String orderType; |
| | | |
| | | } |