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;
|
}
|