TG.WXCRM.V4/Model/QueryMap/HstModel.cs

93 lines
2.0 KiB
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.QueryMap
{
class HstModel
{
}
public class HstRegUserModel
{
[NotMapped]
public string username { get; set; }
[NotMapped]
public string hst_username { get; set; }
[NotMapped]
public string password { get; set; }
[NotMapped]
public string password_type { get; set; }
[NotMapped]
public string nickName { get; set; }
[NotMapped]
public string tradeCode { get; set; }
[NotMapped]
public string deptCode { get; set; }
[NotMapped]
public int scheduleStatus { get; set; }
}
public class retClassByHst
{
[NotMapped]
public bool result { get; set; }
[NotMapped]
public int retcode { get; set; }
[NotMapped]
public string retRoomId { get; set; }
[NotMapped]
public string hstUserName { get; set; }
[NotMapped]
public string hstPassWord { get; set; }
}
public class retActivityData
{
[NotMapped]
public bool result { get; set; }
[NotMapped]
public int retcode { get; set; }
[NotMapped]
public string msg { get; set; }
}
public class HstAddUserPowerModel
{
[NotMapped]
public string roomid { get; set; }
[NotMapped]
public string hst_username { get; set; }
[NotMapped]
public string RightTime { get; set; }
[NotMapped]
public string deptCode { get; set; }
}
public class HstBlackConfig
{
[NotMapped]
public string tradeCode { get; set; }
[NotMapped]
public int updateType { get; set; }
}
public class SmsSendMsgModel
{
[NotMapped]
public bool result { get; set; }
[NotMapped]
public string retcode { get; set; }
[NotMapped]
public string retMessage { get; set; }
}
}