liyong
2 天以前 78626d4b0f68a2bf25586d8ee570c587e889b906
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
package com.ruoyi.sales.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@TableName("invoice_registration")
public class InvoiceRegistration {
 
    /**
     * 序号
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @Schema(description = "销售台账sales_ledger主键")
    private Integer salesLedgerId;
 
    @Schema(description = "销售合同号")
    private String salesContractNo;
 
    @Schema(description = "客户名称ID")
    private Integer customerId;
 
    @Schema(description = "业务员")
    private String salesman;
 
    @Schema(description = "项目名称")
    private String projectName;
 
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @Schema(description = "修改用户")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    @Schema(description = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
 
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}