平安校园
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

PersonSetInfoSearch.cs 316 B

5 ay önce
12345678910111213
  1. namespace SafeCampus.Application.Services.Business.PersonSetInfoService;
  2. public class PersonSetInfoSearch : BasePageInput
  3. {
  4. /// <summary>
  5. /// 专业id
  6. /// </summary>
  7. public long? MajorId { get; set; }
  8. /// <summary>
  9. /// 班级id
  10. /// </summary>
  11. public string SetName { get; set; }
  12. }