嗨森逛服务
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/HighUserCouponModel.java

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