fhx
2024-04-11 5ed1dfff3a33a421501fe30b9ec636736d28fa69
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
package com.hz.his.dto.coupon;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
 
/**
 * 优惠券新增 项目参数
 */
@Data
public class CouponProjectDto extends PageDto {
    /**id  */
    private String id;
    /**项目名称**/
    private String name;
    /**hisId**/
    private String hisId;
    /**hisType**/
    private String hisType;
 
    public CouponProjectDto(String id, String name, String hisId, String hisType) {
        this.id = id;
        this.name = name;
        this.hisId = hisId;
        this.hisType = hisType;
    }
}