| | |
| | | @Column(columnDefinition = "VARCHAR(50) comment '产品Erp编码'") |
| | | private String erpCode; |
| | | |
| | | @Schema(description = "产品价格") |
| | | @Schema(description = "产品型号") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '产品型号'") |
| | | private String productType; |
| | | |
| | | /* @Schema(description = "产品价格") |
| | | @Column(columnDefinition = "double comment '产品价格'") |
| | | private Double price; |
| | | private Double price;*/ |
| | | |
| | | @Schema(description = "税率(百分比,如13表示13%)") |
| | | @Column(columnDefinition = "double default 0.00 comment '税率'") |
| | | private Double taxRate; |
| | | |
| | | @Schema(description = "税收分类") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '税收分类'") |
| | | private String taxClass; |
| | | |
| | | @Schema(description = "父ID") |
| | | @Column(columnDefinition = "bigint comment '父ID'") |
| | | @Column(columnDefinition = "bigint default 0 comment '父ID'") |
| | | private Long parentId; |
| | | |
| | | /** |