1234567891011121314151617181920212223242526272829303132333435 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
-
-
-
- public class JoinIndexModel
- {
-
-
-
- public GalleryEntity galleryEntity { get; set; }
-
-
-
- public IList<GalleryEntity> PositionGallert { get; set; }
-
-
-
- public IList<GalleryEntity> SalaryList { get; set; }
-
-
-
- public IList<GalleryEntity> EnvironmentList { get; set; }
- }
- }
|