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

15 lines
328 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; }
2026-03-23 15:22:29 +08:00
public string WEDWorkCode { get; set; }
2025-05-06 10:20:27 +08:00
}
}