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