26 lines
666 B
C#
26 lines
666 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class batchmsg
|
|
{
|
|
public long pici { get; set; }
|
|
public int isStart { get; set; }
|
|
public long starttime { get; set; }
|
|
public int isEnd { get; set; }
|
|
public long endTime { get; set; }
|
|
public string remarks { get; set; }
|
|
public string alias { get; set; }
|
|
public List<batchmsg_detial> detial { get; set; }
|
|
}
|
|
|
|
public class batchmsg_detial
|
|
{
|
|
public long rid { get; set; }
|
|
public int status { get; set; }
|
|
public string remarks { get; set; }
|
|
public long zitime { get; set; }
|
|
|
|
}
|
|
}
|