27 lines
841 B
C#
27 lines
841 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class TodoItemRequestDto
|
|
{
|
|
public string Order { get; set; }
|
|
public string resid { get; set; }
|
|
public int? txt_departmentid { get; set; }
|
|
public int? txt_eid { get; set; }
|
|
public string cname { get; set; }
|
|
public string eventid { get; set; }
|
|
public string eventtypename { get; set; }
|
|
public string eventmemo { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
|
|
public int? isread { get; set; }
|
|
public DateTime? readtimestart { get; set; }
|
|
public DateTime? readtimeend { get; set; }
|
|
public string txt_deptIds { get; set; }
|
|
}
|
|
} |