fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.hz.his.dto.report;
 
 
import lombok.Data;
 
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class ConsultantCashDto{
 
    private String userId;
 
    private String userName;
 
    private String tel;
 
    private String CIQ;
 
    private String memberNO;
 
    private String userType;
 
    private String channelId;
 
    private String channelName;
 
    private String channel2Id;
 
    private String channelName2;
 
    private String channelCategory;
 
    private String arrivalType;
 
    private String orderNo;
    private String type;
    private String orderId;
    private String developerShopId;
    private String developerShopName;
    private String cashierShopId;
    private String cashierShopName;
    private String serviceShopId;
    private String serviceShopName;
    private String operatorId;
    private String operatorName;
    private Date orderTime;
    private String orderConsultantId;
    private String orderConsultantName;
    private String cashierId;
    private String cashierName;
    private String developerId;
    private String developerName;
    private String goodsType;
    private String itemTypeId1;
    private String itemTypeName1;
    private String itemTypeId2;
    private String itemTypeName2;
    private String itemTypeId3;
    private String itemTypeName3;
    private String goodsName;
    private BigDecimal discount;
    private String doctorQualification;
    private String specification;
    private String unit;
    private String specs = "[]";
    private BigDecimal proPrice=BigDecimal.ZERO;
    private Integer buyNum;
    private String transactionType;
    private String payMode;
    private Date payTime;
    private String remarks;
 
    private BigDecimal performanceMoney=BigDecimal.ZERO;
 
    //用户咨询师(荣爷说权限按照这个查询)
    private String hisCorpUserName;
 
    //交易类型
    public static final String TYPE_TRANSACTION_PROCEEDS="收款";
}