Files
shgx_tz_mes_backend_sync/ZR.Model/MES/andon/Dto/AndonAlarmContactDto.cs

47 lines
1011 B
C#
Raw Normal View History

2025-12-10 13:55:42 +08:00
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.andon.Dto
{
/// <summary>
/// 报警联系人表查询对象
/// </summary>
public class AndonAlarmContactQueryDto : PagerInfo
{
}
/// <summary>
/// 报警联系人表输入输出对象
/// </summary>
public class AndonAlarmContactDto
{
[Required(ErrorMessage = "ID不能为空")]
public int Id { get; set; }
public string UserId { get; set; }
public string UserName { get; set; }
public string Position { get; set; }
public string Role { get; set; }
public string ManagerId { get; set; }
public string ManagerName { get; set; }
public string Phone { get; set; }
public string LineCode { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}