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

HandWarnInput.cs 280 B

1234567891011121314
  1. namespace SafeCampus.Application.Services.Business.Warn.Dto;
  2. public class HandWarnInput
  3. {
  4. /// <summary>
  5. /// 预警id
  6. /// </summary>
  7. public long Id { get; set; }
  8. /// <summary>
  9. /// 处理意见
  10. /// </summary>
  11. public string Remark { get; set; }
  12. }