package org.jeecg.modules.base.entity;
|
|
import java.io.Serializable;
|
import java.io.UnsupportedEncodingException;
|
import java.util.Date;
|
import java.math.BigDecimal;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import lombok.Data;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.jeecg.common.constant.CommonConstant;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @Description: 供应商管理
|
* @Author: jeecg-boot
|
* @Date: 2025-06-24
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("base_supplier")
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="base_supplier对象", description="供应商管理")
|
public class Supplier implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**主键*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
/**删除标记*/
|
@Excel(name = "删除标记", width = 15)
|
@ApiModelProperty(value = "删除标记")
|
@TableLogic
|
private Integer delFlag = CommonConstant.DEL_FLAG_0;
|
/**供应商编码*/
|
@Excel(name = "供应商编码", width = 15)
|
@ApiModelProperty(value = "供应商编码")
|
private String supplierCode;
|
/**供应商名称*/
|
@Excel(name = "供应商名称", width = 15)
|
@ApiModelProperty(value = "供应商名称")
|
private String supplierName;
|
/**供应商名称*/
|
@Excel(name = "供应商名称", width = 15)
|
@ApiModelProperty(value = "供应商名称")
|
private String supplierStatus;
|
/**国家*/
|
@Excel(name = "国家", width = 15)
|
@ApiModelProperty(value = "国家")
|
private String country;
|
/**省份*/
|
@Excel(name = "省份", width = 15)
|
@ApiModelProperty(value = "省份")
|
private String province;
|
/**城市*/
|
@Excel(name = "城市", width = 15)
|
@ApiModelProperty(value = "城市")
|
private String city;
|
/**详细地址*/
|
@Excel(name = "详细地址", width = 15)
|
@ApiModelProperty(value = "详细地址")
|
private String address;
|
/**邮编*/
|
@Excel(name = "邮编", width = 15)
|
@ApiModelProperty(value = "邮编")
|
private String postcode;
|
/**联系人*/
|
@Excel(name = "联系人", width = 15)
|
@ApiModelProperty(value = "联系人")
|
private String contact;
|
/**传真*/
|
@Excel(name = "传真", width = 15)
|
@ApiModelProperty(value = "传真")
|
private String fax;
|
/**邮箱*/
|
@Excel(name = "邮箱", width = 15)
|
@ApiModelProperty(value = "邮箱")
|
private String email;
|
/**电话*/
|
@Excel(name = "电话", width = 15)
|
@ApiModelProperty(value = "电话")
|
private String phone;
|
/**公司电话*/
|
@Excel(name = "公司电话", width = 15)
|
@ApiModelProperty(value = "公司电话")
|
private String companyTelephone;
|
/**官方网站*/
|
@Excel(name = "官方网站", width = 15)
|
@ApiModelProperty(value = "官方网站")
|
private String officialWebsite;
|
/**备注*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
}
|