|
@@ -24,30 +24,14 @@ import java.util.Date;
|
24
|
24
|
public class GrainError implements Serializable {
|
25
|
25
|
private static final long serialVersionUID = 2162086215502754428L;
|
26
|
26
|
|
27
|
|
- @ApiModelProperty(value = "粮情检测记录id")
|
28
|
|
- private Integer pId;
|
29
|
|
-
|
30
|
|
- @ApiModelProperty(value = "粮情检测记录子表id")
|
31
|
|
- private Integer cId;
|
32
|
|
-
|
|
27
|
+ @ApiModelProperty(value = "2021年11周")
|
|
28
|
+ private String yearJoinWeek;
|
33
|
29
|
@ApiModelProperty(value = "库id")
|
34
|
30
|
private Integer depotId;
|
35
|
|
-
|
36
|
|
- @ApiModelProperty(value = "检查年份(用于粮情异常等,做年统计)")
|
37
|
|
- private Integer checkYear;
|
38
|
|
-
|
39
|
|
- @ApiModelProperty(value = "检查所在年第几周")
|
40
|
|
- private Integer checkYearWeek;
|
41
|
|
-
|
42
|
|
- @ApiModelProperty(value = "仓房id")
|
43
|
|
- private Integer houseId;
|
44
|
|
-
|
45
|
|
- @ApiModelProperty(value = "是否异常_选项(0:否,1:是)")
|
46
|
|
- private Integer anomalousStatus;
|
47
|
|
-
|
48
|
|
- @ApiModelProperty(value = "检查类型(子表检查项)")
|
49
|
|
- private Integer enumId;
|
50
|
|
-
|
|
31
|
+ @ApiModelProperty(value = "仓房个数")
|
|
32
|
+ private Integer houseCount;
|
|
33
|
+ @ApiModelProperty(value = "异常粮情个数")
|
|
34
|
+ private Integer grainErrorCount;
|
51
|
35
|
@ApiModelProperty(value = "检查(操作)时间(子表)")
|
52
|
36
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
53
|
37
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|