fwq
2023-08-16 e1fdc6715055b36024fec8e05562d3afe97b35ef
提交 | 用户 | age
928153 1 package com.hz.his.dto.coupon;
F 2
3 import lombok.Data;
4
5 import java.util.List;
6
7 /**
8  * 优惠券发送参数
9  * @author fwq
10  */
11 @Data
12 public class CouponSendDto{
13
14     /**操作人类型*/
15     private String operatorType;
16     /**操作人标识-必填*/
17     private String operatorId;
9cf3c1 18     /**操作人角色标识-非必填*/
F 19     private String roleId;
928153 20     /**操作人名称-必填*/
F 21     private String operatorName;
22
23     /**操作备注*/
b1af55 24     private String operatorRemark;
928153 25
b1af55 26     /**来源标识*/
928153 27     private String commonId;
F 28     /**来源类型 CouponReleaseRecordItem*/
29     private String commonType;
30
b3ef41 31     /**发送的券信息-必填*/
F 32     private List<CouponSendItemDto> couponList;
928153 33
F 34 }