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.
21 lines
456 B
21 lines
456 B
package com.hai.model;
|
|
|
|
import com.hai.entity.HighUserCoupon;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description:
|
|
* @Date: 2021/3/27 17:19
|
|
*/
|
|
public class HighUserCouponModel extends HighUserCoupon {
|
|
|
|
private HighCouponModel highCouponModel;
|
|
|
|
public HighCouponModel getHighCouponModel() {
|
|
return highCouponModel;
|
|
}
|
|
|
|
public void setHighCouponModel(HighCouponModel highCouponModel) {
|
|
this.highCouponModel = highCouponModel;
|
|
}
|
|
}
|
|
|