邱宇豪
2023-10-26 234fa7f56e0cf3c86dcf56fe0ba628360e1758f4
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
102
103
104
105
106
107
package com.thhy.materials.modules.biz.embedment.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.thhy.general.annotations.Excel;
import com.thhy.general.annotations.Idkey;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@Getter
@Setter
@ToString
public class SysEmbedmentRecordEntity implements Serializable {
    /**
     * 
     */
    @Idkey("id")
    private String id;
 
    /**
     * 预埋件ID
     */
    private String embedmentId;
    //预埋件名称
    private String embedmentName;
    //预埋件规格
    @Excel(sort = 1,title = "规格型号")
    private String embedmentModel;
 
    @Excel(sort = 0,title = "预埋件名称")
    private String embedmentNameAndModel;
 
    public String getEmbedmentNameAndModel() {
        return embedmentName+"-"+embedmentModel;
    }
 
    /**
     * 1入库2出库
     */
    private String stockType;
 
    /**
     * 出库量/入库量
     */
    @Excel(sort = 2,title = "入库数量")
    private Integer changeStock;
 
    /**
     * 供应单位
     */
    private String supplierId;
    //供应商名称
    private String supplierName;
 
    /**
     * 单价
     */
    @Excel(sort = 3,title = "单价")
    private BigDecimal singlePrice;
 
    /**
     * 金额
     */
    @Excel(sort = 4,title = "金额")
    private BigDecimal amount;
 
    /**
     * 备注
     */
    @Excel(sort = 5,title = "备注")
    private String remark;
 
    /**
     * 领料部门
     */
    private String getDepart;
    //部门名称
    private String departName;
 
    /**
     * 入库人
     */
    private String createUser;
    private String realName;
 
    /**
     * 入库时间
     */
    @Excel(sort = 6,title = "入库时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String createTime;
 
    private String companyId;
    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table sys_assist_record
     *
     * @mbg.generated Tue Apr 11 09:37:48 CST 2023
     */
    private static final long serialVersionUID = 1L;
 
}