| | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("sales_ledger_product_template") |
| | | @ApiModel(value = "SalesLedgerProductTemplate对象", description = "产品信息模板") |
| | | @Schema(name = "SalesLedgerProductTemplate对象", description = "产品信息模板") |
| | | public class SalesLedgerProductTemplate implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("产品信息主键") |
| | | @Schema(description = "产品信息主键") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("关联台账主表主键") |
| | | @Schema(description = "关联台账主表主键") |
| | | private Integer salesLedgerId; |
| | | |
| | | @ApiModelProperty("产品大类") |
| | | @Schema(description = "产品大类") |
| | | private String productCategory; |
| | | |
| | | @ApiModelProperty("规格型号") |
| | | @Schema(description = "规格型号") |
| | | private String specificationModel; |
| | | |
| | | @ApiModelProperty("单位") |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | |
| | | @ApiModelProperty("数量") |
| | | @Schema(description = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @ApiModelProperty("最低库存") |
| | | @Schema(description = "最低库存") |
| | | private BigDecimal minStock; |
| | | |
| | | @ApiModelProperty("税率") |
| | | @Schema(description = "税率") |
| | | private BigDecimal taxRate; |
| | | |
| | | @ApiModelProperty("含税单价") |
| | | @Schema(description = "含税单价") |
| | | private BigDecimal taxInclusiveUnitPrice; |
| | | |
| | | @ApiModelProperty("含税总价") |
| | | @Schema(description = "含税总价") |
| | | private BigDecimal taxInclusiveTotalPrice; |
| | | |
| | | @ApiModelProperty("不含税总价") |
| | | @Schema(description = "不含税总价") |
| | | private BigDecimal taxExclusiveTotalPrice; |
| | | |
| | | @ApiModelProperty("发票类型") |
| | | @Schema(description = "发票类型") |
| | | private String invoiceType; |
| | | |
| | | @ApiModelProperty("1.销售台账,2.采购台账") |
| | | @Schema(description = "1.销售台账,2.采购台账") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty("产品id") |
| | | @Schema(description = "产品id") |
| | | private Integer productId; |
| | | |
| | | @ApiModelProperty("型号id") |
| | | @Schema(description = "型号id") |
| | | private Integer productModelId; |
| | | |
| | | private String register; |
| | |
| | | |
| | | private BigDecimal warnNum; |
| | | |
| | | @ApiModelProperty("是否推送质检") |
| | | @Schema(description = "是否推送质检") |
| | | private Boolean isChecked; |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |