| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CallCenterApi.Interface.Models.Input
- {
- public class UserAccountInput
- {
- public int UserId { get; set; } = 0;
- public string Usercode { get; set; }
- public string Username { get; set; }
- public string Password { get; set; }
- //public string Extno { get; set; }
- public string WorkNumber { get; set; }
- public int DeptId { get; set; } = 0;
- public int RoleId { get; set; } = 0;
- public int? ClassId { get; set; } = 0;
- //public int GroupId { get; set; } = 0;
- public bool IsSeat { get; set; } = false;
- public string SearRight { get; set; }
- public string Sex { get; set; }
- public string Mobile { get; set; }
- public string Telphone { get; set; }
- public DateTime? Birth { get; set; }
- //public int? HjType { get; set; }
- public string Remark { get; set; }
- }
- }
|