22 lines
495 B
C#
22 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.MsgTool
|
|
{
|
|
public class MsgToolTaskSendLogDto
|
|
{
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public decimal? eid { get; set; }
|
|
public DateTime? stime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
public int PageIndex { get; set; }
|
|
public int PageSize { get; set; }
|
|
|
|
}
|
|
}
|