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.

25 lines
598 B

2 years ago
  1. using Entity.Sugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Euro.Transfer.Model
  8. {
  9. public class ClockTipsInfo : OTB_SYS_ClockTips
  10. {
  11. /// <summary>
  12. /// 系統網頁類別
  13. /// </summary>
  14. public int MsgType { get; set; }
  15. /// <summary>
  16. /// 頁面跳轉參數
  17. /// </summary>
  18. public string Parm { get; set; }
  19. /// <summary>
  20. /// 推送多人集合
  21. /// </summary>
  22. public IList<string> UserIds { get; set; }
  23. }
  24. }