You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
583 B
44 lines
583 B
package com.gaotao.modules.toolman.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Auther: Zuowenwen
|
|
* @Date:2021/07/07 10:30
|
|
* @Description: //TODO 描述
|
|
*/
|
|
/**
|
|
* 库位表
|
|
*/
|
|
@Data
|
|
public class Location {
|
|
/**
|
|
* 库位id
|
|
*/
|
|
private String locationid;
|
|
|
|
/**
|
|
* 工厂编码
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
* 库位名称
|
|
*/
|
|
private String locationname;
|
|
|
|
/**
|
|
* 仓库id
|
|
*/
|
|
private String warehouseid;
|
|
|
|
/**
|
|
* 管理人
|
|
*/
|
|
private String keeper;
|
|
|
|
/**
|
|
* 是否启用
|
|
*/
|
|
private String active;
|
|
}
|