using System; using System.Data; namespace DSWeb.Models { public class WorkFlowConditionEntity { private string _gid;//主键唯一值 private string _name;//系统名称 private string _description;//显示名称 private string _query_table;//要执行条件查询的表 private string _query_sql_str;//执行查询SQL语句 private string _create_user;//创建人GID private DateTime _create_time;//创建时间 private string _modified_user;//最后一次更新操作人GID private DateTime _modified_time;//最后一次更新操作时间 private int _state;//状态 private string _remark;//备注 public WorkFlowConditionEntity() { } /// /// 主键唯一值 /// public string GID { get { return _gid; } set { _gid = value; } } /// /// 系统名称 /// public string Name { get { return _name; } set { _name = value; } } /// /// 显示名称 /// public string Description { get { return _description; } set { _description = value; } } /// /// 要执行条件查询的表 /// public string QueryTable { get { return _query_table; } set { _query_table = value; } } /// /// 执行查询SQL语句 /// public string QuerySqlStr { get { return _query_sql_str; } set { _query_sql_str = value; } } /// /// 创建人GID /// public string CreateUser { get { return _create_user; } set { _create_user = value; } } /// /// 创建时间 /// public DateTime CreateTime { get { return _create_time; } set { _create_time = value; } } /// /// 最后一次更新操作人GID /// public string ModifiedUser { get { return _modified_user; } set { _modified_user = value; } } /// /// 最后一次更新操作时间 /// public DateTime ModifiedTime { get { return _modified_time; } set { _modified_time = value; } } /// /// 状态 /// public int State { get { return _state; } set { _state = value; } } /// /// 备注 /// public string Remark { get { return _remark; } set { _remark = value; } } } }