YYC
2025-08-27 dccec595343177f7bbcf0a9b977c5dca4a0d08fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.fzzy.async.fzzy40.entity;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * 虫害统计
 * 
 * @author: andy.jia
 * @description:
 * @version:
 * @data:2019年12月25日
 *
 */
@Data
@Entity
@Table(name = "D_PEST")
@IdClass(Fz40PestKey.class)
public class Fz40Pest implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Id
    @Column(name = "BATCH_ID_", length = 40)
    @PropertyDef(label = "批次ID")
    private String batchId;
 
    @Id
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码", description = "")
    private String companyId;
 
    @Id
    @Column(name = "DEPOT_ID_", length = 50)
    @PropertyDef(label = "仓库ID", description = "仓库编号")
    private String depotId;
 
    @Column(name = "PEST_MAX_")
    @PropertyDef(label = "最多数量")
    private int pestMax = 0;
 
    @Column(name = "METHOD_", length = 10)
    @PropertyDef(label = "虫害检测方法", description = "0-粮堆扦样;1-墙面粮面检查")
    private String method;
 
    @Column(name = "POSITION_", length =30)
    @PropertyDef(label = "发生部位")
    private String position;
 
    @Column(name = "PEST_TYPE_", length =30)
    @PropertyDef(label = "虫害种类")
    private String pestType;
 
    @Column(name = "PEST_LEVEL_", length =30)
    @PropertyDef(label = "虫粮等级判定")
    private String pestLevel;
 
    @Column(name = "PEST_ANALYSIS_", length =60)
    @PropertyDef(label = "害虫抗药性分析")
    private String pestAnalysis;
 
    @Column(name = "PEST_START_")
    @PropertyDef(label = "虫害采集点开始", description = "气体配置信息")
    private int pestStart;
 
    @Column(name = "PEST_END_")
    @PropertyDef(label = "虫害采集点截至", description = "气体配置信息")
    private int pestEnd;
 
    @Column(name = "CHECK_NUM_")
    @PropertyDef(label = "采集通道个数")
    private int checkNum = 0;
 
    @Column(name = "RECEIVE_DATE_")
    @PropertyDef(label = "检测时间")
    private Date receiveDate;
 
    @Column(name = "POINTS_", length = 2000)
    @PropertyDef(label = "采集点信息", description = "固定为:passCode,num;passCode,num;")
    private String points;
 
    @Column(name = "CHECK_USER_", length = 30)
    @PropertyDef(label = "检测人")
    private String checkUser;
 
    @Column(name = "REMARK_", length = 200)
    @PropertyDef(label = "备注信息")
    private String remark;
}