李白
9 天以前 08095d9847f0cd612c3007f860e57e967278562e
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
package com.by4cloud.platformx.business.entity.invoice.vo;
 
import lombok.Data;
 
@Data
public class BIPPayPlan {
 
    private String _status = "Insert";
 
    private Integer issueNo;
 
    private String startDate;
 
    private String expireDate;
 
    private Double ration;
 
    private Double oriTaxIncludedAmount;//含税金额
 
    private Double localTaxIncludedAmount;//含税金额
 
    private Integer blnPrepare;//是否预收
 
    private Integer blnDeposit;//是否保证金
 
    private String id;
}