TG.WXCRM.V4/Core.DTO/AliYunSub/AliYunSubInfo.cs

32 lines
822 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}