64 lines
772 B
C#
64 lines
772 B
C#
using System;
|
|
|
|
|
|
namespace Model.APIItem
|
|
{
|
|
public class WeldInfoItem
|
|
{
|
|
/**
|
|
* 主键
|
|
*/
|
|
|
|
public string WeldId{get;set;}
|
|
|
|
/**
|
|
* 焊材编码
|
|
*/
|
|
public string WeldCode{get;set;}
|
|
|
|
/**
|
|
* 焊材牌号(名称)
|
|
*/
|
|
|
|
public string WeldName{get;set;}
|
|
|
|
/**
|
|
* 规格
|
|
*/
|
|
|
|
public string WeldSpec{get;set;}
|
|
|
|
/**
|
|
* 焊材类型
|
|
*/
|
|
|
|
public string WeldTypeId{get;set;}
|
|
|
|
/**
|
|
* 条和盘和重量的转换
|
|
*/
|
|
|
|
public decimal? ConvertValue{get;set;}
|
|
|
|
/**
|
|
* 最低警示数量
|
|
*/
|
|
|
|
public decimal? WarnAmount {get;set;}
|
|
|
|
/**
|
|
* 钢材类型
|
|
*/
|
|
|
|
public string SteelType{get;set;}
|
|
|
|
|
|
public string ModifyMan{get;set;}
|
|
|
|
|
|
public string CreateMan { get; set; }
|
|
public string WeldUnit { get; set; }
|
|
|
|
}
|
|
}
|