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.
22 lines
507 B
22 lines
507 B
package com.hai.model;
|
|
|
|
import com.hai.entity.HighCoupon;
|
|
import com.hai.entity.HighCouponHandsel;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description: 赠送卡券模型
|
|
* @Date: 2021/3/11 23:12
|
|
*/
|
|
public class HighCouponHandselModel extends HighCouponHandsel {
|
|
|
|
HighCouponModel highCouponModel;
|
|
|
|
public HighCouponModel getHighCouponModel() {
|
|
return highCouponModel;
|
|
}
|
|
|
|
public void setHighCouponModel(HighCouponModel highCouponModel) {
|
|
this.highCouponModel = highCouponModel;
|
|
}
|
|
}
|
|
|