嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/model/HighCouponHandselModel.java

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;
}
}