SGGL_SGY/SGGL/Model/APIItem/HJGL/WeldingMethodItem.cs

18 lines
455 B
C#
Raw Normal View History

2025-02-19 15:58:42 +08:00
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; }
}
}