package com.ruoyi.basic.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.time.LocalDateTime; @Data @TableName("supplier_manage") public class SupplierManage { @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "供应商名称") private String supplierName; @ApiModelProperty(value = "纳税人识别号") private String taxpayerIdentificationNum; @ApiModelProperty(value = "公司地址") private String companyAddress; @ApiModelProperty(value = "公司电话") private String companyPhone; @ApiModelProperty(value = "开户行") private String bankAccountName; @ApiModelProperty(value = "账号") private String bankAccountNum; @ApiModelProperty(value = "联系人") private String contactUserName; @ApiModelProperty(value = "联系电话") private String contactUserPhone; @ApiModelProperty(value = "维护人ID") private Integer maintainUserId; @ApiModelProperty(value = "维护时间") private LocalDateTime maintainTime; @ApiModelProperty(value = "创建时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @ApiModelProperty(value = "创建用户") @TableField(fill = FieldFill.INSERT) private Integer createUser; @ApiModelProperty(value = "修改时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @ApiModelProperty(value = "修改用户") @TableField(fill = FieldFill.INSERT_UPDATE) private Integer updateUser; @ApiModelProperty(value = "租户ID") @TableField(fill = FieldFill.INSERT) private Integer tenantId; }