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;
|
}
|