fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
提交 | 用户 | age
f378c0 1 package com.hz.his.dto.coupon;
R 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
6
7 /**
8  * 优惠券新增 项目参数
9  */
10 @Data
11 public class CouponProjectDto extends PageDto {
12     /**id  */
13     private String id;
14     /**项目名称**/
15     private String name;
16     /**hisId**/
17     private String hisId;
18     /**hisType**/
19     private String hisType;
20
21     public CouponProjectDto(String id, String name, String hisId, String hisType) {
22         this.id = id;
23         this.name = name;
24         this.hisId = hisId;
25         this.hisType = hisType;
26     }
27 }