30 lines
546 B
C#
30 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Request
|
|
{
|
|
public class LoginQuery
|
|
{
|
|
/// <summary>
|
|
/// 首次注册时传此值
|
|
/// </summary>
|
|
public string openId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退出重新登录时传此值
|
|
/// </summary>
|
|
public string code { get; set; }
|
|
|
|
public string unionId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class CustomerShareQuery
|
|
{
|
|
public int CustomerId { get; set;}
|
|
|
|
}
|
|
}
|