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.
97 lines
1.3 KiB
97 lines
1.3 KiB
package com.gaotao.modules.toolman.entity;
|
|
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Auther: Zuowenwen
|
|
* @Date:2021/07/07 17:08
|
|
* @Description: //TODO 描述
|
|
*/
|
|
@Data
|
|
public class ToolHeader {
|
|
/**
|
|
* 工具编号
|
|
*/
|
|
private String toolid;
|
|
|
|
/**
|
|
* 工厂编号
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
* 工具名称
|
|
*/
|
|
private String tooldescription;
|
|
|
|
/**
|
|
* 规格型号
|
|
*/
|
|
private String spec;
|
|
|
|
/**
|
|
* 工具分类
|
|
*/
|
|
private String familyid;
|
|
|
|
/**
|
|
* 是否在用Y/N
|
|
*/
|
|
private String active;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
/**
|
|
* 标准成本
|
|
*/
|
|
private Double standardcost;
|
|
|
|
/**
|
|
* 属性模板
|
|
*/
|
|
private String codeno;
|
|
|
|
/**
|
|
* 创建日期
|
|
*/
|
|
private Date createdate;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createdby;
|
|
|
|
/**
|
|
* 计量单位
|
|
*/
|
|
private String umid;
|
|
|
|
/**
|
|
* 默认仓库
|
|
*/
|
|
private String defaultwarehouseid;
|
|
|
|
/**
|
|
* 最近更改人
|
|
*/
|
|
private String lastupdateby;
|
|
|
|
/**
|
|
* 默认库位
|
|
*/
|
|
private String defaultlocationid;
|
|
|
|
/**
|
|
* 是否创建物料
|
|
*/
|
|
private String partcreatedflag;
|
|
|
|
/**
|
|
* 对应物料编码
|
|
*/
|
|
private String partno;
|
|
}
|