Newer
Older
laserPTZ_CS / model / User.cs
wangxitong on 11 Sep 2 KB first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace laserPTZ.model
{
    public class User
    {
        private Int64 id;
        private String avatar;
        private String account;
        private String password;
        private String salt;
        private String name;
        private DateTime birthday;
        private String sex;
        private String email;
        private String phone;
        private String roleid;
        private Int64 deptid;
        private String status;
        private DateTime createtime;
        private int version;
        private String targetid;
        private String targetname;
        private String passwordSync;
        private int isSync;
        private DateTime lastTime;
        private decimal positionLng;
        private decimal positionLat;
        private String loginIp;
        private String loginMac;

        public long Id { get => id; set => id = value; }
        public string Avatar { get => avatar; set => avatar = value; }
        public string Account { get => account; set => account = value; }
        public string Password { get => password; set => password = value; }
        public string Salt { get => salt; set => salt = value; }
        public string Name { get => name; set => name = value; }
        public DateTime Birthday { get => birthday; set => birthday = value; }
        public string Sex { get => sex; set => sex = value; }
        public string Email { get => email; set => email = value; }
        public string Phone { get => phone; set => phone = value; }
        public string Roleid { get => roleid; set => roleid = value; }
        public long Deptid { get => deptid; set => deptid = value; }
        public string Status { get => status; set => status = value; }
        public DateTime Createtime { get => createtime; set => createtime = value; }
        public int Version { get => version; set => version = value; }
        public string Targetid { get => targetid; set => targetid = value; }
        public string Targetname { get => targetname; set => targetname = value; }
        public string PasswordSync { get => passwordSync; set => passwordSync = value; }
        public int IsSync { get => isSync; set => isSync = value; }
        public DateTime LastTime { get => lastTime; set => lastTime = value; }
        public decimal PositionLng { get => positionLng; set => positionLng = value; }
        public decimal PositionLat { get => positionLat; set => positionLat = value; }
        public string LoginIp { get => loginIp; set => loginIp = value; }
        public string LoginMac { get => loginMac; set => loginMac = value; }
    }
}