buhuazhen
6 天以前 a1f56d054684d1294d027ed9f8dfbea6cee654aa
src/main/java/com/ruoyi/basic/pojo/SupplierManage.java
@@ -14,30 +14,30 @@
public class SupplierManage {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    @ApiModelProperty(value = "供应商名称")
    @Excel(name = "供应商名称")
    private String supplierName;
    @ApiModelProperty(value = "纳税人识别号")
    @Excel(name = "纳税人识别号")
//    @Excel(name = "纳税人识别号")
    private String taxpayerIdentificationNum;
    @ApiModelProperty(value = "公司地址")
    @Excel(name = "公司地址")
//    @Excel(name = "公司地址")
    private String companyAddress;
    @ApiModelProperty(value = "公司电话")
    @Excel(name = "公司电话")
//    @Excel(name = "公司电话")
    private String companyPhone;
    @ApiModelProperty(value = "开户行")
    @Excel(name = "开户行")
//    @Excel(name = "开户行")
    private String bankAccountName;
    @ApiModelProperty(value = "账号")
    @Excel(name = "账号")
//    @Excel(name = "账号")
    private String bankAccountNum;
    @ApiModelProperty(value = "联系人")
@@ -49,13 +49,16 @@
    private String contactUserPhone;
    @ApiModelProperty(value = "维护人ID")
    @Excel(name = "维护人")
//    @Excel(name = "维护人")
    private Integer maintainUserId;
    @ApiModelProperty(value = "维护时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
//    @Excel(name = "维护时间", width = 30, dateFormat = "yyyy-MM-dd")
    private LocalDate maintainTime;
//    @Excel(name = "是否白名单")
    @ApiModelProperty(value = "是否白名单(0是 1否)")
    private Integer isWhite;
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
@@ -76,4 +79,8 @@
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty(value = "供应商类型")
    @TableField(value = "supplier_type")
    private String supplierType;
}