| | |
| | | package doumeemes.dao.ext.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import doumeemes.core.annotation.excel.ExcelColumn; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer procedureId; |
| | | @ApiModelProperty(value = "物料编码", example = "1") |
| | | private Integer materialId; |
| | | @ApiModelProperty(value = "物料名称或物料code编码" ) |
| | | private String materialName; |
| | | @ApiModelProperty(value = "根组织编码", example = "1",hidden = true) |
| | | private Integer rootDepartId; |
| | | @ApiModelProperty(value = "开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date stateDate; |
| | | private Date startDate; |
| | | @ApiModelProperty(value = "结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date endDate; |