123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
-
-
-
- public class RecuritListModel
- {
-
-
-
- public GalleryEntity GalleryEntity { get; set; }
-
-
-
- public IList<PositionEntity> PositionList { get; set; }
-
-
-
- public IList<DictItemEntity> DeptList { get; set; }
-
-
-
- public IList<DictItemEntity> AddressList { get; set; }
- public int? DeptId { get; set; }
- public int? AddressId { get; set; }
- public int RowsCount { get; set; }
- public int TypeId { get; set; }
- public int PageIndex { get; set; }
- }
- }
|