47 lines
1016 B
C#
47 lines
1016 B
C#
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 AlarmTypeCode { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |