using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.PhoneFollowUps { //public class AutoCreatePhoneFollowUpDto //{ // /// // /// 0-corn表达式 1-按天 2-按周 3-按月 4-按年 // /// // public char FollowUpMode { get; set; } = '0'; // /// // /// FollowUpMode为0时 为corn表达式 其他模式为具体数字 // /// // public string ModeValue { get; set; } // /// // /// 截止时间 采用corn表达式时需要截止日期 // /// // public string EndDate { get; set; } // /// // /// 随访主表ID // /// // public Guid FollowUpId { get; set; } // /// // /// 随访内容 // /// // public string FollowUpContent { get; set; } // /// // /// 回复内容 // /// // public string ReplyContent { get; set; } //} public class AutoCreatePhoneFollowUpDto { /// /// 开始时间 /// public string StartDate { get; set; } /// /// 间隔天数 /// public int IntervalDays { get; set; } = 1; /// /// 生成次数 /// public int GenerateCount { get; set; } = 1; /// /// 随访主表ID /// public Guid FollowUpId { get; set; } /// /// 随访内容 /// public string FollowUpContent { get; set; } } }