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

  1. namespace SafeCampus.Application.Services.Business.AttendanceService;
  2. public class AttendanceAddInput
  3. {
  4. /// <summary>
  5. /// 关联底库id 如果为空,表示该人员未匹配到底库
  6. /// </summary>
  7. public string PersonSetId { get; set; }
  8. /// <summary>
  9. /// 人员id
  10. /// </summary>
  11. public string PersonId { get; set; }
  12. /// <summary>
  13. /// 考勤时间
  14. /// </summary>
  15. public DateTime Tick { get; set; }
  16. }