42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
namespace WX.CRM.Model.DTO.wework
|
|
{
|
|
public class StorageMessage
|
|
{
|
|
public long id { get; set; }
|
|
public int contentType { get; set; }
|
|
public int convType { get; set; }
|
|
public long sendTime { get; set; }
|
|
public long sender { get; set; }
|
|
public string sendername { get; set; }
|
|
public long receiver { get; set; }
|
|
public long conversationId { get; set; }
|
|
public string appinfo { get; set; }
|
|
public string content { get; set; }
|
|
public string fileMd5 { get; set; }
|
|
public long vid { get; set; }
|
|
public string url { get; set; }
|
|
public string smallMd5 { get; set; }
|
|
public string maxMd5 { get; set; }
|
|
}
|
|
public class GenWorkMessage
|
|
{
|
|
public int pkid { get; set; }
|
|
public string id { get; set; }
|
|
public int contentType { get; set; }
|
|
public int convType { get; set; }
|
|
public string sendTime { get; set; }
|
|
public long createTime { get; set; }
|
|
public string sender { get; set; }
|
|
public string sendername { get; set; }
|
|
public string receiver { get; set; }
|
|
public string conversationId { get; set; }
|
|
public string appinfo { get; set; }
|
|
public string content { get; set; }
|
|
public string fileMd5 { get; set; }
|
|
public string vid { get; set; }
|
|
public string url { get; set; }
|
|
public string smallMd5 { get; set; }
|
|
public string maxMd5 { get; set; }
|
|
}
|
|
}
|