initial add
This commit is contained in:
20
Fab2ApprovalSystem/Models/ApprovalLog.cs
Normal file
20
Fab2ApprovalSystem/Models/ApprovalLog.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace Fab2ApprovalSystem.Models
|
||||
{
|
||||
public class ApprovalLog
|
||||
{
|
||||
|
||||
public int ApprovalLogID;
|
||||
public int IssueID;
|
||||
public int UserID;
|
||||
public string OperationType;
|
||||
public int SubRoleID;
|
||||
public string OperationLog;
|
||||
public int DocumentTypeID;
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user