fwq
2023-08-16 646ece35ec3fb713e811926b3cc74460e5225afb
提交 | 用户 | 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;
18     /**操作人名称-必填*/
19     private String operatorName;
20
c878e5 21     /**操作人角色标识-非必填*/
F 22     private String roleId;
23     /**操作人平台-非必填*/
24     private String appIdCode;
25     /**操作备注-非必填*/
b1af55 26     private String operatorRemark;
928153 27
b1af55 28     /**来源标识*/
928153 29     private String commonId;
F 30     /**来源类型 CouponReleaseRecordItem*/
31     private String commonType;
32
b3ef41 33     /**发送的券信息-必填*/
F 34     private List<CouponSendItemDto> couponList;
928153 35
F 36 }