45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.DTO.Res
|
|
{
|
|
public class Soft_User_GetCheckDTO
|
|
{
|
|
public string resid { get; set; }
|
|
public string softusername { get; set; }
|
|
public string companyCode { get; set; }
|
|
public int eid { get; set; }
|
|
/// <summary>
|
|
/// 1 获取 2 下推
|
|
/// </summary>
|
|
public int type { get; set; }
|
|
public string existsoftName { get; set; }
|
|
public List<decimal> deptids { get; set; }
|
|
|
|
}
|
|
public class Soft_User_GetModelDTO
|
|
{
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
public string mobile { get; set; }
|
|
public string username { get; set; }
|
|
public string userpass { get; set; }
|
|
public decimal? regcampainid { get; set; }
|
|
public string reglatform { get; set; }
|
|
public DateTime? activetime { get; set; }
|
|
public string activeresid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? regdate { get; set; }
|
|
public string resid { get; set; }
|
|
public string ip { get; set; }
|
|
public string mainresid { get; set; }
|
|
}
|
|
public class UserNameEndTimeModel
|
|
{
|
|
public long endtime { get; set; }
|
|
public string orderid { get; set; }
|
|
public string username { get; set; }
|
|
}
|
|
}
|