20 lines
398 B
C#
20 lines
398 B
C#
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;
|
|
|
|
}
|
|
} |