| | |
| | | public class ContractOutBound extends BaseModel<ContractOutBound> { |
| | | |
| | | @Schema(description = "Erp出库Id") |
| | | @Column(columnDefinition = "bigint not null comment 'Erp出库Id'") |
| | | @Column(columnDefinition = "bigint comment 'Erp出库Id'") |
| | | private Long OutBoundId; |
| | | |
| | | @Schema(description = "关联合同ID") |
| | |
| | | private Integer invoiceSatus; |
| | | |
| | | @Schema(description = "总单价") |
| | | @Column(columnDefinition = "decimal(10,0) comment '出库数量'") |
| | | @Column(columnDefinition = "decimal(10,0) comment '总单价'") |
| | | private BigDecimal totalPrice; |
| | | |
| | | @Schema(description = "总税额") |
| | |
| | | //产品信息 |
| | | |
| | | @Schema(description = "产品id") |
| | | @Column(columnDefinition = "bigint not null comment '产品id'") |
| | | @Column(columnDefinition = "bigint comment '产品id'") |
| | | private Long productId; |
| | | |
| | | @Schema(description = "税率(百分比,如13表示13%)") |