1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PMS.BusinessModels.MobileProblem
- {
- public class MobileUserRegistModel
- {
- public string name { get; set; }
- public string Department { get; set; }
- public string telephone { get; set; }
- public string password { get; set; }
- public string SiteID { get; set; }
- public string RegistStatus { get; set; }
- public string UserGetId { get; set; }
- public string SMSCode { get; set; }
- /// <summary>
- /// 渠道
- /// </summary>
- public string Channel { get; set; }
- /// <summary>
- /// 简码
- /// </summary>
- public string simple { get; set; }
- //医院名称
- public string hospitalname { get; set; }
- }
- }
|