using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ICSUser
{
///
/// 表头ID
///
public string ID { get; set; }
///
/// 操作人
///
public string User { get; set; }
///
/// 操作时间
///
public DateTime MTime { get; set; }
}
}