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.

71 lines
1.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.PhoneFollowUps
  7. {
  8. //public class AutoCreatePhoneFollowUpDto
  9. //{
  10. // /// <summary>
  11. // /// 0-corn表达式 1-按天 2-按周 3-按月 4-按年
  12. // /// </summary>
  13. // public char FollowUpMode { get; set; } = '0';
  14. // /// <summary>
  15. // /// FollowUpMode为0时 为corn表达式 其他模式为具体数字
  16. // /// </summary>
  17. // public string ModeValue { get; set; }
  18. // /// <summary>
  19. // /// 截止时间 采用corn表达式时需要截止日期
  20. // /// </summary>
  21. // public string EndDate { get; set; }
  22. // /// <summary>
  23. // /// 随访主表ID
  24. // /// </summary>
  25. // public Guid FollowUpId { get; set; }
  26. // /// <summary>
  27. // /// 随访内容
  28. // /// </summary>
  29. // public string FollowUpContent { get; set; }
  30. // /// <summary>
  31. // /// 回复内容
  32. // /// </summary>
  33. // public string ReplyContent { get; set; }
  34. //}
  35. public class AutoCreatePhoneFollowUpDto
  36. {
  37. /// <summary>
  38. /// 开始时间
  39. /// </summary>
  40. public string StartDate { get; set; }
  41. /// <summary>
  42. /// 间隔天数
  43. /// </summary>
  44. public int IntervalDays { get; set; } = 1;
  45. /// <summary>
  46. /// 生成次数
  47. /// </summary>
  48. public int GenerateCount { get; set; } = 1;
  49. /// <summary>
  50. /// 随访主表ID
  51. /// </summary>
  52. public Guid FollowUpId { get; set; }
  53. /// <summary>
  54. /// 随访内容
  55. /// </summary>
  56. public string FollowUpContent { get; set; }
  57. }
  58. }