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; } /// /// 审核标识(1审核,0弃审) /// public string ApproveFlag { get; set; } } }