平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PersonSetInfoSearch.cs 316 B

1 month ago
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. }