ComplianceServer/oldcode/WX.CRM.DataSynFactory/Templates/Client_AliyunSub.cs

34 lines
894 B
C#
Raw Permalink 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 WX.CRM.DataSynFactory.Templates
{
/// <summary>
/// 阿里云订阅
/// </summary>
public class Client_AliyunSub
{
/// <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; }
}
}