package cn.lili.modules.lmk.domain.entity;
|
|
import cn.lili.mybatis.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
/**
|
* 店铺优惠卷对应关系
|
*
|
* @author peng
|
* @since 2025-09-25
|
*/
|
@Data
|
@TableName("lmk_store_coupon")
|
public class StoreCoupon extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("store_id")
|
/** 店铺id */
|
private Long storeId;
|
|
@TableField("store_name")
|
/** 店铺名称 */
|
private String storeName;
|
|
@TableField("coupon_id")
|
/** 优惠卷id */
|
private String couponId;
|
|
@TableField("coupon_name")
|
/** 优惠卷名称 */
|
private String couponName;
|
|
|
}
|