ContractPayment.java
1.84 KB
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
package vion.model;
import com.baomidou.mybatisplus.annotation.*;
import io.github.linpeilie.annotations.AutoMapper;
import io.github.linpeilie.annotations.AutoMappers;
import lombok.Getter;
import lombok.Setter;
import vion.dto.ContractPaymentDTO;
import vion.vo.ContractPaymentVO;
import java.math.BigDecimal;
import java.util.Date;
/**
* 合同收款方式
*/
@Getter
@Setter
@TableName(value = "tbl_contract_payment_info")
@AutoMappers({
@AutoMapper(target = ContractPaymentVO.class),
@AutoMapper(target = ContractPaymentDTO.class),
})
public class ContractPayment {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 合同ID
*/
@TableField(value = "contract_id")
private Long contractId;
/**
* 付款方式:1-签订 2-到货 3-系统验收 4-项目验收 5-质保 6-第一笔维保款 7-第二笔维保款 8-第三笔维保款 9-维保进度款 10-维保验收款
*/
@TableField(value = "payment_type")
private Integer paymentType;
/**
* 付款比例
*/
@TableField(value = "payment_ratio")
private BigDecimal paymentRatio;
/**
* 收款日期
*/
@TableField(value = "payment_date")
private Date paymentDate;
/**
* 节点日期,指合同到这一阶段时的时间
*/
@TableField(value = "node_date")
private Date nodeDate;
/**
* 创建者
*/
@TableField(value = "create_user")
private Integer createUser;
/**
* 记录最后一次修改者
*/
@TableField(value = "modify_user")
private Integer modifyUser;
/**
* 创建时间
*/
@TableField(value = "create_time", fill = FieldFill.INSERT)
private Date createTime;
/**
* 修改时间
*/
@TableField(value = "modify_time", fill = FieldFill.INSERT_UPDATE)
private Date modifyTime;
}