fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
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;
    }
}