ZHJA_HJGL/HJGL_ZH/Model/APIItem/WeldInfoItem.cs

64 lines
772 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
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; }
}
}