liyong
2026-04-28 2c51e2bac7e271f6bd1a7da060e4ffd327d5a8d2
src/main/java/com/ruoyi/basic/pojo/SupplierManage.java
@@ -14,11 +14,16 @@
public class SupplierManage {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    @ApiModelProperty(value = "供应商名称")
    @Excel(name = "供应商名称")
    private String supplierName;
    @ApiModelProperty(value = "供应商类型")
    @TableField(value = "supplier_type")
    @Excel(name = "供应商类型")
    private String supplierType;
    @ApiModelProperty(value = "纳税人识别号")
    @Excel(name = "纳税人识别号")
@@ -79,4 +84,9 @@
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}