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

PersonInfoSearch.cs 413 B

1234567891011121314151617
  1. namespace SafeCampus.Application.Services.Business.PersonInfoService;
  2. public class PersonInfoSearch:BasePageInput
  3. {
  4. /// <summary>
  5. /// 人员名称
  6. /// </summary>
  7. public string PersonName { get; set; }
  8. /// <summary>
  9. /// 手机号
  10. /// </summary>
  11. public string Phone { get; set; }
  12. /// <summary>
  13. /// 班级id
  14. /// </summary>
  15. public string PersonSetId { get; set; }
  16. }