zhangherong
2025-06-25 23855599412c4d61b38d78f0f3abd3430a48b5b1
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/dto/OutBoundAddDto.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,39 @@
package org.jeecg.modules.tms.entity.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
/**
 * æ–°å¢žæ–¹å¼å‡ºåº“参数封装
 */
@Data
public class OutBoundAddDto {
    //台账明细id
    @ApiModelProperty(value = "台账明细id")
    private String toolLedgerDetailId;
    //工具编码(tms_base_tool表主键id)
    @ApiModelProperty(value = "工具编码(tms_base_tool表主键id)")
    private String toolCode;
    //工具编号(唯一编号,管到把的属性)
    @ApiModelProperty(value = "工具编号(唯一编号,管到把的属性)")
    private String toolId;
    //出库方式
    @ApiModelProperty(value = "出库方式")
    private String outStorehouseType;
    //出库数量
    @ApiModelProperty(value = "出库数量")
    private BigDecimal outboundQuantity;
    //库位号
    @ApiModelProperty(value = "库位号")
    private String outboundLocation;
    //额定寿命
    @ApiModelProperty(value = "额定寿命")
    private BigDecimal ratedLife;
    //使用寿命
    @ApiModelProperty(value = "使用寿命")
    private BigDecimal useLife;
}