22 lines
567 B
C#
22 lines
567 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PSTW_CentralSystem.Areas.IT.Models
|
|
{
|
|
[Table("it_approval_flows")]
|
|
public class ItApprovalFlow
|
|
{
|
|
[Key]
|
|
public int ItApprovalFlowId { get; set; }
|
|
|
|
[MaxLength(200)]
|
|
public string FlowName { get; set; }
|
|
|
|
// approvers
|
|
public int HodUserId { get; set; }
|
|
public int GroupItHodUserId { get; set; }
|
|
public int FinHodUserId { get; set; }
|
|
public int MgmtUserId { get; set; }
|
|
}
|
|
}
|