平安校园
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.
 
 
 
 
 
 

17 lines
392 B

  1. namespace SafeCampus.Application.Services.Business.MajorService;
  2. public class MajorSearch:BasePageInput
  3. {
  4. /// <summary>
  5. /// 专业名称
  6. /// </summary>
  7. public string Name { get; set; }
  8. /// <summary>
  9. /// 专业编码
  10. /// </summary>
  11. public string Code { get; set; }
  12. /// <summary>
  13. /// 院系id
  14. /// </summary>
  15. public long? DepId { get; set; }
  16. }