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
71 lines
1.8 KiB
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
|
|
//{
|
|
// /// <summary>
|
|
// /// 0-corn表达式 1-按天 2-按周 3-按月 4-按年
|
|
// /// </summary>
|
|
// public char FollowUpMode { get; set; } = '0';
|
|
|
|
// /// <summary>
|
|
// /// FollowUpMode为0时 为corn表达式 其他模式为具体数字
|
|
// /// </summary>
|
|
// public string ModeValue { get; set; }
|
|
|
|
// /// <summary>
|
|
// /// 截止时间 采用corn表达式时需要截止日期
|
|
// /// </summary>
|
|
// public string EndDate { get; set; }
|
|
|
|
// /// <summary>
|
|
// /// 随访主表ID
|
|
// /// </summary>
|
|
// public Guid FollowUpId { get; set; }
|
|
|
|
// /// <summary>
|
|
// /// 随访内容
|
|
// /// </summary>
|
|
// public string FollowUpContent { get; set; }
|
|
|
|
// /// <summary>
|
|
// /// 回复内容
|
|
// /// </summary>
|
|
// public string ReplyContent { get; set; }
|
|
//}
|
|
|
|
public class AutoCreatePhoneFollowUpDto
|
|
{
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 间隔天数
|
|
/// </summary>
|
|
public int IntervalDays { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 生成次数
|
|
/// </summary>
|
|
public int GenerateCount { get; set; } = 1;
|
|
|
|
|
|
/// <summary>
|
|
/// 随访主表ID
|
|
/// </summary>
|
|
public Guid FollowUpId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 随访内容
|
|
/// </summary>
|
|
public string FollowUpContent { get; set; }
|
|
|
|
}
|
|
}
|