53 lines
1.2 KiB
C#
53 lines
1.2 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 工艺建模项目表查询对象
|
|
/// </summary>
|
|
public class ProModelProjectQueryDto : PagerInfo
|
|
{
|
|
public string ProjectCode { get; set; }
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
public string Version { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 工艺建模项目表输入输出对象
|
|
/// </summary>
|
|
public class ProModelProjectDto
|
|
{
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long Id { get; set; }
|
|
|
|
public string ProjectCode { get; set; }
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
public string ProductCode { get; set; }
|
|
|
|
public string ProductName { get; set; }
|
|
|
|
public string Version { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public string IsActive { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
public string UpdateBy { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |