You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.hfkj.model.discount;
|
|
|
|
import com.hfkj.entity.CouponDiscountUserRel;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class CouponDiscountUserRelModel extends CouponDiscountUserRel {
|
|
|
|
/**
|
|
* 优惠券来源
|
|
*/
|
|
private Integer source;
|
|
|
|
/**
|
|
* 优惠券编号
|
|
*/
|
|
private String discountNo;
|
|
|
|
}
|
|
|