You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.4 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_route_detail")]
[Serializable]
public class SysRouteDetail : BaseEntity
{
[Column("route_id")]
[DisplayName(" ")]
public int RouteId { get; set; }
[Column("process_id")]
[DisplayName(" ")]
public int ProcessId { get; set; }
[Column("next_process_id")]
[DisplayName(" ")]
public int NextProcessId { get; set; }
[Column("result")]
[DisplayName(" ")]
public int Result { get; set; }
[Column("seq")]
[DisplayName(" ")]
public int Seq { get; set; }
[Column("pd_code")]
[DisplayName(" ")]
public string PdCode { get; set; }
[Column("necessary")]
[DisplayName(" ")]
public string Necessary { get; set; }
[Column("step")]
[DisplayName(" ")]
public int Step { get; set; }
#region 扩展字段
[NotMapped]
[Column("process_name")]
[DisplayName(" ")]
public string ProcessName { get; set; }
[NotMapped]
[Column("next_process_name")]
[DisplayName(" ")]
public string NextProcessName { get; set; }
#endregion
}
}