22 lines
667 B
C#
22 lines
667 B
C#
using System;
|
|
|
|
namespace WX.CRM.Model.DTO.wework
|
|
{
|
|
public class shRcontact
|
|
{
|
|
public string remoteid { get; set; }
|
|
public string name { get; set; }
|
|
public string mobile { get; set; }
|
|
public string job { get; set; }
|
|
public string userdeptinfolist { get; set; }
|
|
public string unionid { get; set; }
|
|
public string corpid { get; set; }
|
|
public string avatorurl { get; set; }
|
|
public string md5 { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
public string vid { get; set; }
|
|
public string realremark { get; set; }
|
|
}
|
|
}
|