SGGL_JT/SUBQHSE/Model/ZHGL/DataSync/WelderOutput.cs

14 lines
280 B
C#
Raw Normal View History

2025-05-06 10:20:27 +08:00
using System;
namespace Model
{
/// <summary>
/// 焊工数据
/// </summary>
public class WelderOutput : BaseEntities
{
2025-06-18 16:17:36 +08:00
public string Id { get; set; }
2025-05-06 10:20:27 +08:00
public string WEDCode { get; set; }
public string WEDName { get; set; }
}
}