| | |
| | | package com.ruoyi.sales.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "关联销售台账主表主键") |
| | | @Schema(description = "关联销售台账主表主键") |
| | | private Integer salesLedgerId; |
| | | |
| | | @ApiModelProperty(value = "sales_ledger_product主键") |
| | | @Schema(description = "sales_ledger_product主键") |
| | | private Integer salesLedgerProductId; |
| | | |
| | | @ApiModelProperty(value = "开票登记表invoice_registration主键") |
| | | @Schema(description = "开票登记表invoice_registration主键") |
| | | private Integer invoiceRegistrationId; |
| | | |
| | | @ApiModelProperty(value = "产品大类") |
| | | @Schema(description = "产品大类") |
| | | private String productCategory; |
| | | |
| | | @ApiModelProperty(value = "规格型号") |
| | | @Schema(description = "规格型号") |
| | | private String specificationModel; |
| | | |
| | | @ApiModelProperty(value = "单位") |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | |
| | | @ApiModelProperty(value = "数量") |
| | | @Schema(description = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @ApiModelProperty(value = "税率") |
| | | @Schema(description = "税率") |
| | | private BigDecimal taxRate; |
| | | |
| | | @ApiModelProperty(value = "含税单价") |
| | | @Schema(description = "含税单价") |
| | | private BigDecimal taxInclusiveUnitPrice; |
| | | |
| | | @ApiModelProperty(value = "含税总价") |
| | | @Schema(description = "含税总价") |
| | | private BigDecimal taxInclusiveTotalPrice; |
| | | |
| | | @ApiModelProperty(value = "不含税总价") |
| | | @Schema(description = "不含税总价") |
| | | private BigDecimal taxExclusiveTotalPrice; |
| | | |
| | | @ApiModelProperty(value = "发票类型") |
| | | @Schema(description = "发票类型") |
| | | private String invoiceType; |
| | | |
| | | @ApiModelProperty(value = "开票数") |
| | | @Schema(description = "开票数") |
| | | private BigDecimal invoiceNum; |
| | | |
| | | @ApiModelProperty(value = "未开票数") |
| | | @Schema(description = "未开票数") |
| | | private BigDecimal noInvoiceNum; |
| | | |
| | | @ApiModelProperty(value = "开票金额") |
| | | @Schema(description = "开票金额") |
| | | private BigDecimal invoiceAmount; |
| | | |
| | | @ApiModelProperty(value = "未开票金额") |
| | | @Schema(description = "未开票金额") |
| | | private BigDecimal noInvoiceAmount; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty(value = "修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty(value = "修改用户") |
| | | @Schema(description = "修改用户") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @Schema(description = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |