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="收款"; }