bug
fwq
2024-06-03 f0a5c0b91d19daf0e4e3e7289923d99916f2a9c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.hz.his.dto;
 
 
import com.hz.his.dto.common.DCommonDto;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 优惠券码
 **/
@Data
public class DCouponDto extends DCommonDto {
    private String couponId;
    private Date startCollectionTime;
    private Date endCollectionTime;
    private Integer isUse;
    private String couponCostDepartment;
    private Integer isReceive;
 
 
}