package com.ruoyi.system.api.domain.poji.shop;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
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 lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 商户表
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("t_shop")
|
public class Shop extends Model<Shop> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 商户id
|
*/
|
@TableId(value = "shop_id", type = IdType.AUTO)
|
private Long shopId;
|
/**
|
* 删除标记
|
*/
|
@TableField("del_flag")
|
private Integer delFlag;
|
/**
|
* 商户状态-1删除0冻结1正常2合作终止3进件中
|
*/
|
@TableField("shop_status")
|
private Integer shopStatus;
|
@TableField("create_time")
|
private Date createTime;
|
@TableField("create_user_id")
|
private Long createUserId;
|
@TableField("update_time")
|
private Date updateTime;
|
@TableField("update_user_id")
|
private Long updateUserId;
|
/**
|
* 商户名称
|
*/
|
@TableField("shop_name")
|
private String shopName;
|
/**
|
* 商户编号
|
*/
|
@TableField("shop_number")
|
private String shopNumber;
|
/**
|
* 商户类型1.经销商2.代理商
|
*/
|
@TableField("shop_type")
|
private Integer shopType;
|
/**
|
* 营业开始时间
|
*/
|
@TableField("business_start_time")
|
private String businessStartTime;
|
/**
|
* 营业结束时间
|
*/
|
@TableField("business_end_time")
|
private String businessEndTime;
|
/**
|
* 店主姓名
|
*/
|
@TableField("shopowner_name")
|
private String shopownerName;
|
/**
|
* 店主联系方式
|
*/
|
@TableField("shopowner_phone")
|
private String shopownerPhone;
|
/**
|
* 签约时间
|
*/
|
@TableField("sign_time")
|
private Date signTime;
|
/**
|
* 签约省code
|
*/
|
@TableField("sign_province_code")
|
private String signProvinceCode;
|
/**
|
* 签约市code
|
*/
|
@TableField("sign_city_code")
|
private String signCityCode;
|
/**
|
* 签约区域code
|
*/
|
@TableField("sign_area_code")
|
private String signAreaCode;
|
/**
|
* 签约区域全称
|
*/
|
@TableField("sign_area_name")
|
private String signAreaName;
|
/**
|
* 商户服务电话
|
*/
|
@TableField("shop_service_phone")
|
private String shopServicePhone;
|
/**
|
* 归属员工
|
*/
|
@TableField("belong_user_id")
|
private Long belongUserId;
|
/**
|
* 归属经销商
|
*/
|
@TableField("belong_shop_id")
|
private Long belongShopId;
|
/**
|
* 扶持能力1.有2.没有
|
*/
|
@TableField("supporting_capacity_flag")
|
private Integer supportingCapacityFlag;
|
/**
|
* 店面操作人数1.1人2.1人以上
|
*/
|
@TableField("operation_person_flag")
|
private Integer operationPersonFlag;
|
/**
|
* 执行力1.强2.弱
|
*/
|
@TableField("executive_force_flag")
|
private Integer executiveForceFlag;
|
/**
|
* 格局1.大2.小
|
*/
|
@TableField("pattern_flag")
|
private Integer patternFlag;
|
/**
|
* 人脉1.宽2.窄
|
*/
|
@TableField("connection_flag")
|
private Integer connectionFlag;
|
/**
|
* 经济能力1.强2.差
|
*/
|
@TableField("economic_ability_flag")
|
private Integer economicAbilityFlag;
|
/**
|
* 与合作商关系1.好2.差
|
*/
|
@TableField("relation_partner")
|
private Integer relationPartner;
|
/**
|
* 曾从事事业
|
*/
|
@TableField("business_history")
|
private String businessHistory;
|
/**
|
* 店铺地址省code
|
*/
|
@TableField("shop_province_code")
|
private String shopProvinceCode;
|
/**
|
* 店铺地址市code
|
*/
|
@TableField("shop_city_code")
|
private String shopCityCode;
|
/**
|
* 店铺地址区code
|
*/
|
@TableField("shop_area_code")
|
private String shopAreaCode;
|
/**
|
* 店铺区域全称
|
*/
|
@TableField("shop_area_name")
|
private String shopAreaName;
|
/**
|
* 店铺详细地址
|
*/
|
@TableField("shop_address")
|
private String shopAddress;
|
/**
|
* 店铺经度
|
*/
|
@TableField("shop_longitude")
|
private String shopLongitude;
|
/**
|
* 店铺维度
|
*/
|
@TableField("shop_latitude")
|
private String shopLatitude;
|
/**
|
* 店铺详情
|
*/
|
@TableField("shop_detail")
|
private String shopDetail;
|
/**
|
* 营销功能1开2关
|
*/
|
@TableField("marketing_function_flag")
|
private Integer marketingFunctionFlag;
|
/**
|
* 领券1开2关
|
*/
|
@TableField("platform_coupon_flag")
|
private Integer platformCouponFlag;
|
/**
|
* 生日卡1开2关
|
*/
|
@TableField("platform_birthday_flag")
|
private Integer platformBirthdayFlag;
|
/**
|
* 店铺设置状态
|
*/
|
@TableField("shop_custom_status")
|
private String shopCustomStatus;
|
/**
|
* 推荐人
|
*/
|
@TableField("recommend_person")
|
private String recommendPerson;
|
/**
|
* 合作截止时间
|
*/
|
@TableField("cooperation_end_time")
|
private Date cooperationEndTime;
|
/**
|
* 合作开始时间
|
*/
|
@TableField("cooperation_start_time")
|
private Date cooperationStartTime;
|
/**
|
* 商户标签
|
*/
|
@TableField("shop_tags")
|
private String shopTags;
|
/**
|
* 签约人
|
*/
|
@TableField("sign_user_id")
|
private Long signUserId;
|
/**
|
* 来源渠道
|
*/
|
@TableField("shop_source")
|
private String shopSource;
|
|
/**
|
* 冻结标记
|
*/
|
@TableField("frozen_flag")
|
private Integer frozenFlag;
|
|
/**
|
* 合作标记
|
*/
|
@TableField("cooperative_flag")
|
private Integer cooperativeFlag;
|
|
/**
|
* 扩展联系人
|
*/
|
@TableField("extend_contacts")
|
private String extendContacts;
|
|
/**
|
* 进件标记
|
*/
|
@TableField("auth_flag")
|
private Integer authFlag;
|
|
/**
|
* 分账标记
|
*/
|
@TableField("account_flag")
|
private Integer accountFlag;
|
/**
|
* 店铺二维码
|
*/
|
@TableField("shop_code")
|
private String shopCode;
|
|
/**
|
* 小鹅通讲师id
|
*/
|
@TableField("xiaoe_guest_id")
|
private String xiaoeUserId;
|
|
|
@Override
|
protected Serializable pkVal() {
|
return this.shopId;
|
}
|
|
}
|