Esempio n. 1
0
        /// <summary>
        /// 管理员获取当前本组织用户提交的所有申请——赵英武
        /// </summary>
        /// <returns></returns>
        public List <CApplyInfoEntity> ListOrganizeApplies()
        {
            CApplyInfoEntity        OrgApply     = new CApplyInfoEntity();
            List <CApplyInfoEntity> OrgApplyList = new List <CApplyInfoEntity>();

            OrgApplyList = OrgApply.GetObjectList("this.Usr_Organize='" + this.Usr_Organize + "'" + "and this.App_Audited='" + (int)AUDITE.UNAUDITING + "'");
            return(OrgApplyList);
        }
Esempio n. 2
0
        /// <summary>
        /// 获取当前用户提交的所有申请——赵英武
        /// </summary>
        /// <returns></returns>
        public List <CApplyInfoEntity> ListMyApplies()
        {
            CApplyInfoEntity        MyApplies   = new CApplyInfoEntity();
            List <CApplyInfoEntity> MyApplyList = new List <CApplyInfoEntity>();

            MyApplyList = MyApplies.GetObjectList("this.App_Applyer='" + this.Usr_Id + "'");
            return(MyApplyList);
        }