| | |
| | | package com.ruoyi.procurementrecord.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | |
| | |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 产品信息表id(自定义入库时为0) |
| | | * 产品信息表id(生产扣库存的时候使用) |
| | | */ |
| | | private Integer salesLedgerProductId; |
| | | private Long salesLedgerProductId; |
| | | |
| | | /** |
| | | * 入库id |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | /** |
| | | * 产品ID |
| | | */ |
| | | private Long productModelId; |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |