|
|
|
@@ -1,17 +1,18 @@ |
|
|
|
package com.iformall.domain.po; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
|
import java.util.*; |
|
|
|
import java.math.*; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.util.List; |
|
|
|
import javax.persistence.Id; |
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
@Table(name = "pos_mall_config") |
|
|
|
@Data |
|
|
|
public class PosMallConfig implements Serializable { |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
public class PosMallConfig extends BaseEntity { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
@Id |
|
|
|
@@ -22,10 +23,12 @@ public class PosMallConfig implements Serializable { |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="租户ID",name="tenantId") |
|
|
|
private String tenantId; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="会员折扣状态,0-使用中,1-禁用",name="discount") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="会员折扣是否开启,0-使用中,1-禁用",name="discount") |
|
|
|
private Integer discount; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="会员优惠券状态,0-使用中,1-禁用",name="coupon") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="会员优惠券是否开启,0-使用中,1-禁用",name="coupon") |
|
|
|
private Integer coupon; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="会员消费卡是否开启,0-使用中,1-禁用",name="card") |
|
|
|
private Integer card; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="创建时间",name="createDate") |
|
|
|
private Date createDate; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="更新时间",name="updateDate") |
|
|
|
|