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
28
29
30
31
| package com.dsh.course.feignClient.account.model;
|
| import lombok.Data;
|
| @Data
| public class IncomeReq {
| /**
| * 收入方类型(1=公司,2=司机)
| */
| private Integer userType;
| /**
| * 收入对象id
| */
| private Integer objectId;
| /**
| * 收入类型(1=活动,2=业务)
| */
| private Integer type;
| /**
| * 收入类型id
| */
| private Integer incomeId;
| /**
| * 订单类型
| */
| private Integer orderType;
| /**
| * 收入金额
| */
| private Double money;
| }
|
|