using System.Collections.Generic;
namespace CRM.Core.DTO.AliYunSub
{
public class AliYunSubInfo
{
///
/// type的值为10是解绑, 20是合并
///
public int type { get; set; }
///
/// 数据一
///
public List 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; }
}
}