| | |
| | | package com.ruoyi.basic.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.pojo.CommonFile; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("product_model") |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "错误信息") |
| | | @TableField(exist = false) |
| | | private String errorMsg; |
| | | |
| | | @TableField(exist = false) |
| | | private List<CommonFile> SalesLedgerFiles; |
| | | |
| | | /** |
| | | * 序号 |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "工艺路线id") |
| | | private Long routeId; |
| | | |
| | | /** |
| | | * 关联产品id |
| | | */ |
| | | @Excel(name = "关联产品id") |
| | | private Long productId; |
| | | |
| | | @TableField(exist = false) |
| | | @Excel(name = "产品名称") |
| | | private String productName; |
| | | |
| | | /** |
| | | * 规格型号 |
| | | */ |
| | | @Excel(name = "图纸编号") |
| | | private String model; |
| | | |
| | | /** |
| | | * 单位 |
| | | */ |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | |
| | | /** |
| | | * 生产炒机 |
| | | */ |
| | | @Excel(name = "生产炒机") |
| | | private String speculativeTradingName; |
| | | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer tenantId; |
| | | private Long tenantId; |
| | | @TableField(exist = false) |
| | | @Excel(name = "入库数量") |
| | | private BigDecimal inboundNum; |
| | | @TableField(exist = false) |
| | | @Excel(name = "出库数量") |
| | | private BigDecimal outboundNum; |
| | | @TableField(exist = false) |
| | | @Excel(name = "剩余库存") |
| | | private BigDecimal stockQuantity; |
| | | |
| | | @ApiModelProperty(value = "规格型号") |
| | | @Excel(name = "规格型号") |
| | | private String drawingNumber; |
| | | |
| | | @TableField(exist = false) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "产品类型(1-物料,2-产品)") |
| | | private Integer productType; |
| | | } |