| | |
| | | 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.time.LocalDateTime; |
| | |
| | | @Data |
| | | @TableName("sales_quotation_product") |
| | | public class SalesQuotationProduct { |
| | | @ApiModelProperty(value = "报价商品ID") |
| | | @Schema(description = "报价商品ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | @ApiModelProperty(value = "销售报价单id") |
| | | @Schema(description = "销售报价单id") |
| | | private Long salesQuotationId; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | @Schema(description = "商品名称") |
| | | private String product; |
| | | @ApiModelProperty(value = "商品规格") |
| | | @Schema(description = "商品规格") |
| | | private String specification; |
| | | @ApiModelProperty(value = "单位") |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | @ApiModelProperty(value = "单价") |
| | | @Schema(description = "单价") |
| | | private Double unitPrice; |
| | | @ApiModelProperty(value = "数量") |
| | | @Schema(description = "数量") |
| | | private Integer quantity; |
| | | @ApiModelProperty(value = "金额") |
| | | @Schema(description = "金额") |
| | | private Double amount; |
| | | @ApiModelProperty(value = "创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @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; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |