50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
namespace Zxd.Core.Domain.Dto.TodoItem
|
|
{
|
|
public class TodoItemDto
|
|
{
|
|
public int? id { get; set; }
|
|
|
|
public int deptid { get; set; }
|
|
|
|
public string? deptname { get; set; }
|
|
|
|
public int? eid { get; set; }
|
|
|
|
public string ename { get; set; }
|
|
|
|
public string? resid { get; set; }
|
|
public string? umid { get; set; }
|
|
public int? customerid { get; set; }
|
|
|
|
public string cname { get; set; }
|
|
|
|
public int eventid { get; set; }
|
|
|
|
public string? eventname { get; set; }
|
|
|
|
public string? eventmemo { get; set; }
|
|
|
|
public DateTime? noticetime { get; set; }
|
|
|
|
public string? eventtypename { get; set; }
|
|
|
|
public int? isread { get; set; }
|
|
|
|
public DateTime? readtime { get; set; }
|
|
|
|
public string appid { get; set; }
|
|
|
|
public string appuserid { get; set; }
|
|
|
|
public int neweventid { get; set; }
|
|
public string? sceneid { get; set; }
|
|
public string? linkurl { get; set; }
|
|
}
|
|
|
|
public class ToDoItemNoticeDto
|
|
{
|
|
public string StartTime { get; set; }
|
|
public string EndTime { get; set; }
|
|
public bool IsNotice { get; set; }
|
|
}
|
|
} |