package com.panzhihua.service_community.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* (McsMerchant)表实体类
|
*
|
* @author makejava
|
* @since 2021-12-28 14:37:11
|
*/
|
@Data
|
@TableName(value = "mcs_merchant")
|
@SuppressWarnings("serial")
|
public class McsMerchant implements Serializable {
|
private static final long serialVersionUID = 535915125894031919L;
|
|
private Long id;
|
/**
|
* 商家名称
|
*/
|
private String name;
|
/**
|
* 手机号
|
*/
|
private String phone;
|
/**
|
* 商家账号
|
*/
|
private String account;
|
/**
|
* 商家logo
|
*/
|
@TableField(value = "logo", updateStrategy = FieldStrategy.IGNORED)
|
private String logo;
|
/**
|
* 关联用户id
|
*/
|
private Long userId;
|
/**
|
* 商家级别(1.临时商家 2.合作商家)
|
*/
|
private Integer level;
|
/**
|
* 戳戳点亮上限(发布次数上限)
|
*/
|
private Integer publishLimit;
|
/**
|
* 到期时间
|
*/
|
private Date expireAt;
|
/**
|
* 是否暂停服务
|
*/
|
private Boolean isPause;
|
/**
|
* 首次点亮时间
|
*/
|
private Date firstLitAt;
|
/**
|
* 商家地址
|
*/
|
private String address;
|
/**
|
* 纬度
|
*/
|
private String lat;
|
/**
|
* 经度
|
*/
|
private String lon;
|
/**
|
* 商家简介
|
*/
|
@TableField(value = "introduction", updateStrategy = FieldStrategy.IGNORED)
|
private String introduction;
|
/**
|
* 是否删除
|
*/
|
private Boolean isDel;
|
/**
|
* 创建时间
|
*/
|
private Date createdAt;
|
/**
|
* 创建人
|
*/
|
private Long createdBy;
|
/**
|
* 更新时间
|
*/
|
private Date updatedAt;
|
/**
|
* 由谁更新
|
*/
|
private Long updatedBy;
|
|
}
|