41 lines
856 B
C#
41 lines
856 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 后道基础站点查询对象
|
|
/// </summary>
|
|
public class QcBackEndBaseSiteQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 后道基础站点输入输出对象
|
|
/// </summary>
|
|
public class QcBackEndBaseSiteDto
|
|
{
|
|
[Required(ErrorMessage = "序号不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |