package com.ruoyi.cwgl.domain.vo;
|
|
import lombok.Data;
|
|
/**
|
* 创建应付账单请求VO
|
*/
|
@Data
|
public class PayableBillCreateVo {
|
|
/**
|
* 账单类型:0=人民币账单,1=港币账单
|
*/
|
private Integer billType;
|
|
private String billName;
|
|
private String supplierName;
|
|
private String isInternalSettlement;
|
|
private String internalSettlementUnit;
|
|
/**
|
* 应付费用统计数据
|
*/
|
private PayableFeeStatisticsVo statisticsData;
|
}
|