Example #1
0
        /// <summary>
        /// 获取落地运营和供应
        /// </summary>
        /// <returns></returns>
        public List <ListParam> GetGYList()
        {
            DataTable        table = Manage.GetLDGY();
            List <ListParam> list  = null;

            if (table != null)
            {
                DataView dv = table.DefaultView;
                dv.RowFilter = " RoleType=2 and AccountState=1 ";
                table        = dv.ToTable();
                list         = MappingHelper <ListParam> .FillModelList(table);
            }
            return(list);
        }