using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Runtime.Serialization; using System.Text; namespace DAL.Models { public class PowerMattersDetail { /// /// 权力唯一标识 /// //[DataMember] [MaxLength(50)] public string ROWGUID { get; set; } /// /// 权力事项类型 /// //[DataMember] [MaxLength(2)] public string QL_KIND { get; set; } /// /// 权力名称 /// //[DataMember] [MaxLength(200)] public string QL_NAME { get; set; } /// /// 权力来源 /// [NotMapped] public string ITEMSOURCE { get; set; } /// /// 法定依据 longtext /// [NotMapped] public string LAWBASIS { get; set; } /// /// 法定期限 /// //[DataMember] public int ANTICIPATE_DAY { get; set; } /// /// 承诺期限 /// //[DataMember] public int PROMISE_DAY { get; set; } /// /// 办事者到办事地点最少次数 /// //[DataMember] public int APPLYERMIN_COUNT { get; set; } /// /// 实施或牵头的处(科)室名称 /// //[DataMember] [NotMapped] public string LEAD_DEPT { get; set; } /// /// 办件类型 /// //[DataMember] [MaxLength(2)] public string BJTYPE { get; set; } /// /// 咨询电话 /// //[DataMember] [MaxLength(80)] public string LINK_TEL { get; set; } /// /// 监督投诉电话 /// //[DataMember] [MaxLength(80)] public string SUPERVISE_TEL { get; set; } /// /// 业务申报材料 longtext /// //[DataMember] public string MATERIAL_INFO { get; set; } /// /// 收费项目 longtext /// //[DataMember] public string CHARGEITEM_INFO { get; set; } /// /// 常见问题解答 longtext /// //[DataMember] public string QA_INFO { get; set; } /// /// 受理地点信息 longtext /// //[DataMember] public string ACCEPT_ADDRESS_INFO { get; set; } /// /// 备注 /// //[DataMember] [NotMapped] public string BakNote { get; set; } /// /// 是否可以网上办理 /// //[DataMember] [NotMapped] public string WebApplyMode { get; set; } /// /// 行政相对人性质 /// //[DataMember] [NotMapped] public string XINGZHENXDRXZ { get; set; } /// /// 实施机关组织机构 /// //[DataMember] [MaxLength(50)] public string QL_DEP { get; set; } //[DataMember] /// /// 审批条件 longtext /// //[DataMember] public string APPLY_CONDITION { get; set; } /// /// 最多跑一次的实现方式 /// //[DataMember] [NotMapped] public string APPLYERMIN_COUNT_DESC { get; set; } /// /// 权力主项编码 /// [NotMapped] public string QL_MAINITEM_ID { get; set; } /// /// 权力子项编码 /// [NotMapped] public string QL_SUBITEM_ID { get; set; } /// /// 权力状态 /// //[DataMember] [MaxLength(1)] public string QL_STATE { get; set; } /// /// 部门GUID /// [MaxLength(50)] public string OUGUID { get; set; } /// /// 最后一次同步时间 /// [NotMapped] public DateTime SYNC_DATE { get; set; } /// /// 同步错误说明 /// [NotMapped] public string SYNC_ERROR_DESC { get; set; } /// /// 写入同步时间 /// public DateTime UPDATE_DATE { get; set; } /// /// 权力更新类型 /// [NotMapped] public string UPDATE_TYPE { get; set; } /// /// 事权层级 /// [NotMapped] public string SHIQUANCJ { get; set; } /// /// 行政区划代码 /// [NotMapped] public string BELONGXIAQUCODE { get; set; } /// /// 实施机关组织机构代码 /// [NotMapped] public string QL_DEP_ORGCDOE { get; set; } /// /// 版本号 /// [NotMapped] public string VERSION_NUMBER { get; set; } /// /// 权力入库时间 /// [NotMapped] public DateTime VERSION_DATE { get; set; } /// /// 权力状态生效时间 /// [NotMapped] public DateTime QL_EFFECT_TIME { get; set; } /// /// 权力内部编码 /// [MaxLength(50)] [Key] public string QL_INNER_CODE { get; set; } /// /// 法定期限单位 /// [NotMapped] public string ANTICIPATE_TYPE { get; set; } /// /// 是否列为国家、省、市、县级行政审批制度改革试点 /// [NotMapped] public string IS_PILOT { get; set; } /// /// 本级审批性质 /// [NotMapped] public string BENJISPXZ { get; set; } /// /// 办理频率 /// [NotMapped] public string HANDLE_FREQUENCY { get; set; } /// /// 办件结果文件名称 /// [NotMapped] public string BANJIAN_FINISHFILES { get; set; } /// /// 网上申报网址 /// [NotMapped] public string WEBAPPLYURL { get; set; } /// /// 网上咨询网址 /// [NotMapped] public string WEBCONSULTURL { get; set; } /// /// 是否收费 /// [NotMapped] public string CHARGE_FLAG { get; set; } /// /// 收费依据 longtext /// [NotMapped] public string CHARGE_BASIS { get; set; } /// /// 面向法人的主题分类 /// [NotMapped] public string RIGHTCLASS_QIYEZT { get; set; } /// /// 面向法人的对象分类 /// [NotMapped] public string RIGHTCLASS_QIYEDX { get; set; } /// /// 面向个人的事项分类 /// [NotMapped] public string RIGHTCLASS_GERENSX { get; set; } /// /// 面向个人的对象分类 /// [NotMapped] public string RIGHTCLASS_GERENDX { get; set; } //`OUT_FLOW_IMG` longblob COMMENT '外部流程图', //`IM_FLOW_IMG` longblob COMMENT '内部流程图', /// /// 内部流程信息 longtext /// [NotMapped] public string IN_FLOW_INFO { get; set; } /// /// 交换标识 /// [NotMapped] public string SYNC_SIGN { get; set; } [NotMapped] public string OUORGCODE { get; set; } [NotMapped] public string ROWGUIDbak { get; set; } [NotMapped] public int sync_state { get; set; } [NotMapped] public string FaRenUrl { get; set; } [NotMapped] public string GeRenFlag { get; set; } [NotMapped] public string Is_TongJian { get; set; } [NotMapped] public string QL_Full_ID { get; set; } [NotMapped] public string ENTRUST { get; set; } [NotMapped] public string ENTRUSTDES { get; set; } [NotMapped] public string OUTypeCode { get; set; } [NotMapped] public string OUT_FLOW_DESC { get; set; } [NotMapped] public string BANJIAN_FINISHTYPE { get; set; } [NotMapped] public string IS_SpecialPro { get; set; } [NotMapped] public string State2 { get; set; } [NotMapped] public string NoSuit_Apply { get; set; } [NotMapped] public string IS_UnifyDo { get; set; } [NotMapped] public string IS_UpUnify { get; set; } [NotMapped] public string QL_ATT { get; set; } [NotMapped] public string ITEMSOURCETYPE { get; set; } [NotMapped] public string Is_SimplePunish { get; set; } [NotMapped] public string Is_LevyWaiver { get; set; } /// /// longtext /// [NotMapped] public string FeeBasis { get; set; } /// /// longtext /// [NotMapped] public string FACT_INFO { get; set; } [NotMapped] public string IS_CS { get; set; } [NotMapped] public string UnifyDoDes { get; set; } [NotMapped] public string IS_VLB { get; set; } [NotMapped] public string NoUnify_Do { get; set; } [NotMapped] public string QL_INNER_CODE_ITEM { get; set; } [NotMapped] public string IsHasOwnFlow { get; set; } [NotMapped] public string Is_TouZiP { get; set; } [NotMapped] public string bak1 { get; set; } [NotMapped] public string bak2 { get; set; } [NotMapped] public string bak3 { get; set; } } }