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.
|
- namespace SafeCampus.Application.Services.Business.ClassTeacherService;
-
- public class ClassTeacherInput
- {
- /// <summary>
- /// 班级id
- /// </summary>
- public string PersonSetId { get; set; }
- /// <summary>
- /// 班主任人员id
- /// </summary>
- public string UserId { get; set; }
- }
-
- public class ClassTeacherUpdateInput: ClassTeacherInput
- {
- public long? ID { get; set; }
- }
|