1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ruoyi.cwgl.domain.vo;
|
| import lombok.Data;
| import com.ruoyi.cwgl.domain.vo.ReceivableFeeStatisticsVo;
|
| /**
| * 创建应收账单请求VO
| */
| @Data
| public class ReceivableBillCreateVo {
|
| /**
| * 账单类型:0=人民币账单,1=港币账单
| */
| private Integer billType;
|
| /**
| * 应收费用统计数据
| */
| private ReceivableFeeStatisticsVo statisticsData;
| }
|
|