Newer
Older
IRIS_REFACTOR / irisDataBase / Model / Permission.cs
yanxiaowei on 11 Aug 2020 760 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace irisDataBase.Model
{
    public class Permission
    {
        int id;
        string doorCode;
        long personId;
        int strategyId;
        DateTime createTime;
        long createUser;

        public int Id { get => id; set => id = value; }
        public string DoorCode { get => doorCode; set => doorCode = value; }
        public long PersonId { get => personId; set => personId = value; }
        public int StrategyId { get => strategyId; set => strategyId = value; }
        public DateTime CreateTime { get => createTime; set => createTime = value; }
        public long CreateUser { get => createUser; set => createUser = value; }
    }
}