提交 | 用户 | age
|
08fa86
|
1 |
package com.hz.his.dto.report; |
F |
2 |
|
|
3 |
|
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
|
|
7 |
import java.math.BigDecimal; |
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
@Data |
|
11 |
public class ConsultantCashDto{ |
|
12 |
|
|
13 |
private String userId; |
|
14 |
|
|
15 |
private String userName; |
|
16 |
|
|
17 |
private String tel; |
|
18 |
|
|
19 |
private String CIQ; |
|
20 |
|
|
21 |
private String memberNO; |
|
22 |
|
|
23 |
private String userType; |
|
24 |
|
|
25 |
private String channelId; |
|
26 |
|
|
27 |
private String channelName; |
|
28 |
|
|
29 |
private String channel2Id; |
|
30 |
|
|
31 |
private String channelName2; |
|
32 |
|
|
33 |
private String channelCategory; |
|
34 |
|
|
35 |
private String arrivalType; |
|
36 |
|
|
37 |
private String orderNo; |
|
38 |
private String type; |
|
39 |
private String orderId; |
|
40 |
private String developerShopId; |
|
41 |
private String developerShopName; |
|
42 |
private String cashierShopId; |
|
43 |
private String cashierShopName; |
|
44 |
private String serviceShopId; |
|
45 |
private String serviceShopName; |
|
46 |
private String operatorId; |
|
47 |
private String operatorName; |
|
48 |
private Date orderTime; |
|
49 |
private String orderConsultantId; |
|
50 |
private String orderConsultantName; |
|
51 |
private String cashierId; |
|
52 |
private String cashierName; |
|
53 |
private String developerId; |
|
54 |
private String developerName; |
|
55 |
private String goodsType; |
|
56 |
private String itemTypeId1; |
|
57 |
private String itemTypeName1; |
|
58 |
private String itemTypeId2; |
|
59 |
private String itemTypeName2; |
|
60 |
private String itemTypeId3; |
|
61 |
private String itemTypeName3; |
|
62 |
private String goodsName; |
|
63 |
private BigDecimal discount; |
|
64 |
private String doctorQualification; |
|
65 |
private String specification; |
|
66 |
private String unit; |
|
67 |
private String specs = "[]"; |
|
68 |
private BigDecimal proPrice=BigDecimal.ZERO; |
|
69 |
private Integer buyNum; |
|
70 |
private String transactionType; |
|
71 |
private String payMode; |
|
72 |
private Date payTime; |
|
73 |
private String remarks; |
|
74 |
|
|
75 |
private BigDecimal performanceMoney=BigDecimal.ZERO; |
|
76 |
|
|
77 |
//用户咨询师(荣爷说权限按照这个查询) |
|
78 |
private String hisCorpUserName; |
|
79 |
|
|
80 |
//交易类型 |
|
81 |
public static final String TYPE_TRANSACTION_PROCEEDS="收款"; |
|
82 |
} |