| | |
| | | package org.jeecg.modules.mdc.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Data |
| | | public class MdcProcessQuantityVo { |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @ApiModelProperty(value = "日期") |
| | | private Date efficientDate; |
| | | |
| | | private String efficientDate; |
| | | private Integer processQuantity; |
| | | private String equipmentId; |
| | | private String startTime; |