TG.WXCRM.V4/NetCore.Model/qw/bas_pushcmd.cs

18 lines
434 B
C#

using System;
namespace NetCore.Model.qw
{
public class bas_pushcmd
{
public int id { get; set; }
public string mevent { get; set; }
public string title { get; set; }
public string jsontext { get; set; }
public DateTime ctime { get; set; }
public DateTime? endtime { get; set; }
public int? iscomplete { get; set; }
public string type { get; set; }
}
}