package org.jeecg.modules.tms.entity.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.math.BigDecimal;
|
|
/***
|
* 工具出库申请-选择出库工具列表展示对象封装
|
*/
|
@Data
|
public class SelectOutboundToolVo {
|
/**主键id*/
|
@ApiModelProperty(value = "主键id")
|
private String id;
|
/**台账明细id*/
|
@ApiModelProperty(value = "台账明细id")
|
private String toolLedgerDetailId;
|
/**工具编码(关联字段)*/
|
@ApiModelProperty(value = "工具编码(关联字段,存tms_base_tools表主键id)")
|
private String toolCode;
|
/**工具编码*/
|
@ApiModelProperty(value = "工具编码(tms_base_tools表tool_code字段)")
|
private String toolNum;
|
/**工具编号*/
|
@ApiModelProperty(value = "工具编号")
|
private String toolId;
|
/**工具中文名称*/
|
@ApiModelProperty(value = "工具中文名称")
|
private String toolName;
|
/**数量*/
|
@ApiModelProperty(value = "数量")
|
private BigDecimal quantity;
|
/**库区/库号*/
|
@ApiModelProperty(value = "库区/库号")
|
private String warehouseId;
|
/**仓库名称*/
|
@ApiModelProperty(value = "仓库名称")
|
private String warehouseName;
|
/**库位号*/
|
@ApiModelProperty(value = "库位号")
|
private String positionCode;
|
}
|