xinyb_
2022-02-17 6e94d52d0ce0c92c2169cdb19bc675ae08391a35
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
package com.yc.MaintenanceFee.entiy;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 维护费用子项
 */
@Data
public class PayItem {
    private String DocCode;
    private String CltCode;
    private String cltName;
    private String DocType;
    private Date DocDate;
    private BigDecimal ReceivMoney;
    private String matName;
    private BigDecimal price;
    private BigDecimal totalMoney;
    private String itemMemo;
    private Integer Digit;
    private Date FYbeginday;
    private Date FYendday;
    private Integer isPaid;
}