12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.zhentao.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * 商家表
- * @TableName merchant
- */
- @TableName(value ="merchant")
- @Data
- public class Merchant implements Serializable {
- /**
- * 商家ID
- */
- @TableId
- private Long id;
- /**
- * 商家名称
- */
- private String name;
- /**
- * 商家logo
- */
- private String logo;
- /**
- * 商家banner图
- */
- private String banner;
- /**
- * 商家描述
- */
- private String description;
- /**
- * 联系电话
- */
- private String contactPhone;
- /**
- * 联系邮箱
- */
- private String contactEmail;
- /**
- * 营业执照图片
- */
- private String businessLicense;
- /**
- * 状态:0-禁用,1-启用 默认启用
- */
- private Integer status;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新时间
- */
- private Date updateTime;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|