6
jinlin
2023-12-01 68981c58ea61ff4edc0479facfb8b76181d2a582
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
package com.zt.life.modules.itemCirculatOrder.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.Date;
 
/**
 * item_circulat_order
 *
 * @author zt generator 
 * @since 1.0.0 2023-11-22
 */
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("item_circulat_order")
public class ItemCirculatOrder extends BusiEntity {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "项目ID")
    private Long projectId;
 
    @ApiModelProperty(value = "物品流转单编号")
    private String code;
 
    @ApiModelProperty(value = "物品其他要求")
    private String itemRequire;
 
    @ApiModelProperty(value = "物品其他要求的其他")
    private String itemOther;
 
    @ApiModelProperty(value = "物品接收人")
    private String itemAcceptor;
 
    @ApiModelProperty(value = "物品接收人ID")
    private String itemAcceptorId;
 
    @ApiModelProperty(value = "物品接收时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date acceptDate;
 
    @ApiModelProperty(value = "物品接收情况说明")
    private String acceptSituation;
 
    @ApiModelProperty(value = "病毒库版本")
    private String virusLibraryVersion;
 
    @ApiModelProperty(value = "校准检测人")
    private String calibratDetector;
 
    @ApiModelProperty(value = "校准检测人ID")
    private String calibratDetectorId;
 
    @ApiModelProperty(value = "校准检测时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date detectDate;
 
    @ApiModelProperty(value = "校准检测情况说明")
    private String detectSituation;
 
    @ApiModelProperty(value = "物品发放人")
    private String itemIssuer;
 
    @ApiModelProperty(value = "物品发放人ID")
    private String itemIssuerId;
 
    @ApiModelProperty(value = "物品发放时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date issueDate;
 
    @ApiModelProperty(value = "物品发放情况说明")
    private String issueSituation;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "年份")
    private String year;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "物品名称")
    private String softwareName;
 
    @TableField(exist = false)
    @ApiModelProperty(value = "物品编号")
    private String softwareIdentity;
 
 
}