智慧保安后台管理-外网-验收版本
shuishen
2021-09-11 995bfe22378bf960682dfac6ced9774c20e762fc
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
95
96
97
98
99
100
101
package org.springblade.modules.equipage.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 实体类
 * @author zhongrj
 * @time 2021-07-06
 */
@Data
@TableName("sys_equipage")
public class Equipage implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 招聘主键id
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
    /**
     * 部门id
     */
    @TableField("dept_id")
    private Long deptId;
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 编号
     */
    private String number;
 
    /**
     * 规格
     */
    private String specifications;
 
    /**
     * 型号
     */
    private String mode;
 
    /**
     * 责任人
     */
    @TableField("person_in_charge")
    private String personInCharge;
 
    /**
     * 品牌,厂商
     */
    private String brand;
    private String jurisdiction;
 
    /**
     * 生产时间
     */
    @TableField("date_for_production")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date dateForProduction;
 
    /**
     * 责任人id
     */
    @TableField("user_id")
    private Long userId;
 
 
    /**
     * 数量
     */
    private Integer num;
 
    /**
     * 采购时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @TableField("purchase_time")
    private Date purchaseTime;
 
    /**
     * 装备类型
     */
    private Integer type;
 
}