SettlementDiffVO.java
725 Bytes
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
package vion.vo;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
import java.time.LocalDateTime;
@Getter
@Setter
public class SettlementDiffVO {
private Long id;
/**
* 合同id
*/
private Long contractId;
/**
* 合同号
*/
private String contractNo;
/**
* 差异类型
*/
private Integer diffType;
/**
* 结算差异
*/
private BigDecimal settlementDiff;
/**
* 冲抵项
*/
private Integer offsetItem;
/**
* 操作人
*/
private Long operator;
/**
* 备注
*/
private String remark;
/**
* 创建时间
*/
private LocalDateTime createTime;
}