package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-01-09
|
*/
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@TableName("t_user")
|
public class TUserBasicInfo {
|
|
private Integer id;
|
@TableField("business_license")
|
private String businessLicense;
|
@TableField("company_name")
|
private String companyName;
|
private String email;
|
private String phone;
|
@TableField("set_up_the_time")
|
private String setUpTheTime;
|
@TableField("contact_name")
|
private String contactName;
|
@TableField("contact_email")
|
private String contactEmail;
|
@TableField("contact_phone")
|
private String contactPhone;
|
@TableField("logistics_contact_name")
|
private String logisticsContactName;
|
@TableField("logistics_contact_email")
|
private String logisticsContactEmail;
|
@TableField("logistics_contact_phone")
|
private String logisticsContactPhone;
|
@TableField("redit_limit")
|
private String reditLimit;
|
@TableField("payment_days")
|
private String paymentDays;
|
private String account;
|
private String password;
|
@TableField("create_time")
|
private Date createTime;
|
@TableField("update_time")
|
private Date updateTime;
|
|
@TableField(exist = false)
|
private String address;
|
/**
|
* 0正常 1删除
|
*/
|
private Integer remove;
|
/**
|
* 0申请 1通过 2拒绝 3冻结
|
*/
|
private Integer status;
|
/**
|
* 分组id
|
*/
|
/**
|
* 0yes 1no
|
*/
|
@TableField("HOME")
|
private Integer home;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("ACCOUNT_SETTINGS")
|
private Integer accountSettings;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("MY_REQUIREMENT")
|
private Integer myRequirement;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("MY_ORDER")
|
private Integer myOrder;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("MY_COMPLAINT")
|
private Integer myComplaint;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("MY_BANK_CARD")
|
private Integer myBankCard;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("MY_ADDRESS")
|
private Integer myAddress;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("WALLET")
|
private Integer wallet;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("BILL")
|
private Integer bill;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("VIEW_DETAILS")
|
private Integer viewDetails;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("DELETE")
|
private Integer delete;
|
/**
|
* 0yes 1no
|
*/
|
@TableField("EDIT")
|
private Integer edit;
|
|
}
|