| | |
| | | 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 = "纳税人识别号") |
| | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |