提交 | 用户 | age | ||
4db575 | 1 | package com.hz.his.dto; |
F | 2 | |
3 | ||
e44f07 | 4 | import com.hz.his.dto.common.DCommonDto; |
4db575 | 5 | import lombok.Data; |
F | 6 | |
7 | import java.util.Date; | |
8 | ||
9 | /** | |
10 | * 优惠券码 | |
11 | **/ | |
12 | @Data | |
ce5ad1 | 13 | public class DCouponDto extends DCommonDto { |
4db575 | 14 | private String couponId; |
F | 15 | private Date startCollectionTime; |
16 | private Date endCollectionTime; | |
17 | private Integer isUse; | |
18 | private String couponCostDepartment; | |
19 | private Integer isReceive; | |
20 | ||
21 | ||
22 | } |