| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- package com.dk.mdm.model.pojo.ivt;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import com.baomidou.mybatisplus.annotation.*;
- import java.io.Serializable;
- import com.dk.common.infrastructure.annotaiton.ExportTitle;
- import com.dk.common.infrastructure.handler.*;
- import com.dk.common.model.pojo.PageInfo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.AllArgsConstructor;
- import lombok.NoArgsConstructor;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import com.alibaba.fastjson.JSONObject;
- import java.math.BigDecimal;
- import java.util.List;
- import java.time.LocalDateTime;
- /**
- * 入库明细
- */
- @Data
- @AllArgsConstructor
- @NoArgsConstructor
- @EqualsAndHashCode(callSuper = true)
- @Accessors(chain = true)
- @ExportTitle("入库明细")
- @TableName(value = "t_psi_inbound_item", autoResultMap = true, schema = "dkic_b")
- @ApiModel(value="实体类:入库明细", description="表名:t_psi_inbound_item")
- public class InboundItem extends PageInfo<InboundItem> implements Serializable {
- /*
- * 数据库字段
- */
- /**
- * 明细ID
- */
- @ApiModelProperty(value = "明细ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String itemId;
- /**
- * 入库ID
- */
- @Excel(name = "入库ID")
- @ApiModelProperty(value = "入库ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String intoId;
- /**
- * 入库类型 (【系统字典】采购入库、销退入库、其他入库)
- */
- @Excel(name = "入库类型 (【系统字典】采购入库、销退入库、其他入库)")
- @ApiModelProperty(value = "入库类型 (【系统字典】采购入库、销退入库、其他入库)")
- private String intoType;
- /**
- * 来源单ID (采购订单、出库退货)
- */
- @Excel(name = "来源单ID (采购订单、出库退货)")
- @ApiModelProperty(value = "来源单ID (采购订单、出库退货)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String fromId;
- /**
- * 来源单明细ID (采购订单、出库退货)
- */
- @Excel(name = "来源单明细ID (采购订单、出库退货)")
- @ApiModelProperty(value = "来源单明细ID (采购订单、出库退货)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String fromItemId;
- /**
- * 商品顺序
- */
- @Excel(name = "商品顺序")
- @ApiModelProperty(value = "商品顺序")
- private Integer itemIndex;
- /**
- * 商品ID
- */
- @Excel(name = "商品ID")
- @ApiModelProperty(value = "商品ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String skuId;
- /**
- * 入库价
- */
- @Excel(name = "入库价")
- @ApiModelProperty(value = "入库价")
- private BigDecimal priceInto;
- /**
- * 非标号
- */
- @Excel(name = "非标号")
- @ApiModelProperty(value = "非标号")
- private String nonStdCode;
- /**
- * 入库状态 (【系统字典】)
- */
- @Excel(name = "入库状态 (【系统字典】)")
- @ApiModelProperty(value = "入库状态 (【系统字典】)")
- private String intoStatus;
- /**
- * 入库中数量
- */
- @Excel(name = "入库中数量")
- @ApiModelProperty(value = "入库中数量")
- private BigDecimal intoingQty;
- /**
- * 入库中金额
- */
- @Excel(name = "入库中金额")
- @ApiModelProperty(value = "入库中金额")
- private BigDecimal intoingAmt;
- /**
- * 已入库数量
- */
- @Excel(name = "已入库数量")
- @ApiModelProperty(value = "已入库数量")
- private BigDecimal intoQty;
- /**
- * 已入库金额
- */
- @Excel(name = "已入库金额")
- @ApiModelProperty(value = "已入库金额")
- private BigDecimal intoAmt;
- /**
- * 已入库退货数量
- */
- @Excel(name = "已入库退货数量")
- @ApiModelProperty(value = "已入库退货数量")
- private BigDecimal returnQty;
- /**
- * 已入库退货金额
- */
- @Excel(name = "已入库退货金额")
- @ApiModelProperty(value = "已入库退货金额")
- private BigDecimal returnAmt;
- /**
- * 备注
- */
- @Excel(name = "备注")
- @ApiModelProperty(value = "备注")
- private String remarks;
- /**
- * 库存ID
- */
- @Excel(name = "库存ID")
- @ApiModelProperty(value = "库存ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String invId;
- /**
- * 入库核对单价
- */
- @Excel(name = "入库核对单价")
- @ApiModelProperty(value = "入库核对单价")
- private BigDecimal costPrice;
- /**
- * 入库核对金额
- */
- @Excel(name = "入库核对金额")
- @ApiModelProperty(value = "入库核对金额")
- private BigDecimal costAmt;
- /**
- * 出库数量
- */
- @Excel(name = "出库数量")
- @ApiModelProperty(value = "出库数量")
- private BigDecimal outQty;
- /**
- * 库存数量 (库存数量=商品数量-出库数量)
- */
- @Excel(name = "库存数量 (库存数量=商品数量-出库数量)")
- @ApiModelProperty(value = "库存数量 (库存数量=商品数量-出库数量)")
- private BigDecimal invQty;
- /**
- * 有效标识 (1:正常 0:停用)
- */
- @Excel(name = "有效标识 (1:正常 0:停用)")
- @ApiModelProperty(value = "有效标识 (1:正常 0:停用)")
- private Boolean flgValid;
- /**
- * 企业ID
- */
- @Excel(name = "企业ID")
- @ApiModelProperty(value = "企业ID")
- @TableField(fill = FieldFill.INSERT)
- private Integer cpId;
- /**
- * 创建时间 (触发器自动处理)
- */
- @Excel(name = "创建时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
- @ApiModelProperty(value = "创建时间 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opCreateTime;
- /**
- * 创建用户 (触发器自动处理)
- */
- @Excel(name = "创建用户 (触发器自动处理)")
- @ApiModelProperty(value = "创建用户 (触发器自动处理)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String opCreateUserId;
- /**
- * 修改时间 (触发器自动处理)
- */
- @Excel(name = "修改时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
- @ApiModelProperty(value = "修改时间 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opUpdateTime;
- /**
- * 修改用户 (触发器自动处理)
- */
- @Excel(name = "修改用户 (触发器自动处理)")
- @ApiModelProperty(value = "修改用户 (触发器自动处理)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String opUpdateUserId;
- /**
- * 数据操作应用 (触发器自动处理)
- */
- @Excel(name = "数据操作应用 (触发器自动处理)")
- @ApiModelProperty(value = "数据操作应用 (触发器自动处理)")
- private String opAppCode;
- /**
- * 数据时间戳 (触发器自动处理)
- */
- @Excel(name = "数据时间戳 (触发器自动处理)")
- @ApiModelProperty(value = "数据时间戳 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opTimestamp;
- /**
- * 数据操作数据库用户 (触发器自动处理)
- */
- @Excel(name = "数据操作数据库用户 (触发器自动处理)")
- @ApiModelProperty(value = "数据操作数据库用户 (触发器自动处理)")
- private String opDbUser;
- @Excel(name = "入库仓库")
- @TableField(typeHandler = UuidTypeHandler.class)
- @ApiModelProperty(value = "入库仓库")
- private String whId;
- @ApiModelProperty(value = "源入库单ID(采购退货时记录)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String sIntoId;
- @ApiModelProperty(value = "源入库单明细ID(采购退货时记录)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String sIntoItemId;
- @ApiModelProperty(value = "源采购订单ID(采购退货时记录)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String sPurId;
- @ApiModelProperty(value = "源采购明细ID(采购退货时记录)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String sPurItemId;
- private static final long serialVersionUID = 1L;
- }
|