32 lines
822 B
C#
32 lines
822 B
C#
using System.Collections.Generic;
|
||
|
||
namespace CRM.Core.DTO.AliYunSub
|
||
{
|
||
|
||
public class AliYunSubInfo
|
||
{
|
||
/// <summary>
|
||
/// type的值为10是解绑, 20是合并
|
||
/// </summary>
|
||
public int type { get; set; }
|
||
/// <summary>
|
||
/// 数据一
|
||
/// </summary>
|
||
public List<UserInfo> data { get; set; }
|
||
}
|
||
|
||
public class UserInfo
|
||
{
|
||
public int uid { get; set; }
|
||
public int cid { get; set; }
|
||
public string appid { get; set; }
|
||
public string appuserid { get; set; }
|
||
public string unionid { get; set; }
|
||
public string mobile { get; set; }
|
||
public string resid { get; set; }
|
||
public int ch { get; set; }
|
||
public string deptcode { get; set; }
|
||
public string type { get; set; }
|
||
}
|
||
}
|