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

27 lines
620 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ICSUser
{
/// <summary>
/// 表头ID
/// </summary>
public string ID { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string User { get; set; }
/// <summary>
/// 操作时间
/// </summary>
public DateTime MTime { get; set; }
/// <summary>
/// 审核标识(1审核,0弃审)
/// </summary>
public string ApproveFlag { get; set; }
}
}