ComplianceServer/oldcode/Core.DTO/Res/Soft_User_GetCheckDTO.cs

31 lines
900 B
C#

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