Files
ChengDa_English/SGGL/Model/APIItem/HJGL/WeldingMethodItem.cs
T
2022-03-15 17:36:38 +08:00

18 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.APIItem.HJGL
{
public class WeldingMethodItem
{
public string WeldingMethodId { get; set; }
public string WeldingMethodCode { get; set; }
public string WeldingMethodName { get; set; }
public string ConsumablesType { get; set; }
public string Remark { get; set; }
}
}