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; } }}
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; }
/// 操作人
public string User { get; set; }
/// 操作时间
public DateTime MTime { get; set; }
}