cuijian
2025-06-16 e0529614c187a5457ca3f587a16edeec51d69d15
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/vo/OutStoreDetailVo.java
@@ -34,45 +34,77 @@
    @ApiModelProperty(value = "主键")
    private String id;
   /**工具编码*/
    @Excel(name = "工具编码", width = 15)
    @ApiModelProperty(value = "工具编码")
    private String toolCode;
   /**工具编号*/
    @Excel(name = "工具编号", width = 25)
    @ApiModelProperty(value = "工具编号")
    private String toolId;
   /**出库类型*/
    @Excel(name = "出库类型", width = 15,dicCode = "out_storehouse_type")
    @Dict(dicCode = "out_storehouse_type")
    @ApiModelProperty(value = "出库类型")
    private String outStorehouseType;
   /**库位号*/
    @Excel(name = "库位号", width = 15)
    @ApiModelProperty(value = "库位号")
    private String goodsShelvesCode;
   /**出库数量*/
    @Excel(name = "出库数量", width = 10)
    @ApiModelProperty(value = "出库数量")
    private BigDecimal outNumber;
   /**出库申请单号*/
    @Excel(name = "出库申请单号", width = 15)
    @ApiModelProperty(value = "出库申请单号")
    private String outStorehouseId;
   /**出库操作方式;1.按申请单 2.手工操作*/
    @Excel(name = "出库操作方式", width = 15)
    @ApiModelProperty(value = "出库操作方式;1.按申请单 2.手工操作")
    private String operateType;
   /**创建人*/
    @ApiModelProperty(value = "创建人")
    private String createBy;
   /**创建时间*/
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**工具类型*/
    @Excel(name = "工具类型", width = 15)
    @ApiModelProperty(value = "工具类型")
    private String applicationType;
    /**中文名称*/
    @Excel(name = "中文名称", width = 15)
    @ApiModelProperty(value = "中文名称")
    private String chineseName;
    /**型号/图号*/
    @Excel(name = "型号/图号", width = 15)
    @ApiModelProperty(value = "型号/图号")
    private String toolModel;
    /**刀具材料*/
    @Excel(name = "刀具材料", width = 15)
    @ApiModelProperty(value = "刀具材料")
    private String toolMaterial;
    /**零件材料*/
    @Excel(name = "零件材料", width = 15)
    @ApiModelProperty(value = "零件材料")
    private String partMaterial;
    /**创建人*/
    @Excel(name = "创建人", width = 15)
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**创建时间*/
    @Excel(name = "创建时间", width = 15, format = "yyyy-MM-dd HH:mm")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**额定寿命*/
    @Excel(name = "额定寿命", width = 15)
    @ApiModelProperty(value = "额定寿命")
    private BigDecimal ratedLife;
    /**使用寿命*/
    @Excel(name = "使用寿命", width = 15)
    @ApiModelProperty(value = "使用寿命")
    private BigDecimal useLife;
    /**剩余寿命*/
    @Excel(name = "剩余寿命", width = 15)
    @ApiModelProperty(value = "剩余寿命")
    private BigDecimal remainingPercentage;
}