package com.ruoyi.stock.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 库存盘点子表
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-05-09 09:57:44
|
*/
|
@Getter
|
@Setter
|
@ToString
|
@TableName("stock_inventory_check_item")
|
@ApiModel(value = "StockInventoryCheckItem对象", description = "库存盘点子表")
|
public class StockInventoryCheckItem implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键ID
|
*/
|
@Schema(description ="主键ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 主表ID
|
*/
|
@Schema(description ="主表ID")
|
private Long mainId;
|
|
/**
|
* 商品ID
|
*/
|
@Schema(description ="商品ID")
|
private Long productModelId;
|
|
/**
|
* 商品编码
|
*/
|
@Schema(description ="商品编码")
|
private String productCode;
|
|
/**
|
* 商品名称
|
*/
|
@Schema(description ="商品名称")
|
private String productName;
|
|
/**
|
* 规格型号
|
*/
|
@Schema(description ="规格型号")
|
private String model;
|
|
/**
|
* 单位
|
*/
|
@Schema(description ="单位")
|
private String unit;
|
|
/**
|
* 批号
|
*/
|
@Schema(description ="批号")
|
private String batchNo;
|
|
/**
|
* 系统库存数量
|
*/
|
@Schema(description ="系统库存数量")
|
private BigDecimal systemQuantity;
|
|
/**
|
* 实际盘点数量
|
*/
|
@Schema(description ="实际盘点数量")
|
private BigDecimal actualQuantity;
|
|
/**
|
* 差异数量(实际-系统)
|
*/
|
@Schema(description ="差异数量(实际-系统)")
|
private BigDecimal differenceQuantity;
|
|
|
|
|
|
/**
|
* 备注
|
*/
|
@Schema(description ="备注")
|
private String remark;
|
|
/**
|
* 创建时间
|
*/
|
@Schema(description ="创建时间")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
/**
|
* 更新时间
|
*/
|
@Schema(description ="更新时间")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
|
private Long deptId;
|
}
|