Newer
Older
IRIS_REFACTOR_DH / irisDataBase / Model / Dept.cs
TAN YUE on 9 Sep 2021 1 KB 20210909 初始提交。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace irisDataBase.Model
{
    public class Dept
    {
        long id;
        int num;
        long pid;
        string pids;
        string simplename;
        string fullname;
        string tips;
        int version;
        string depttype;
        int status;
        int isParent;
        string tenantId;
        string targetIdSync;
        string targetPidSync;
        int isSync;
        string ipSegment;

        public long Id { get => id; set => id = value; }
        public int Num { get => num; set => num = value; }
        public long Pid { get => pid; set => pid = value; }
        public string Pids { get => pids; set => pids = value; }
        public string Simplename { get => simplename; set => simplename = value; }
        public string Fullname { get => fullname; set => fullname = value; }
        public string Tips { get => tips; set => tips = value; }
        public int Version { get => version; set => version = value; }
        public string Depttype { get => depttype; set => depttype = value; }
        public int Status { get => status; set => status = value; }
        public int IsParent { get => isParent; set => isParent = value; }
        public string TenantId { get => tenantId; set => tenantId = value; }
        public string TargetIdSync { get => targetIdSync; set => targetIdSync = value; }
        public string TargetPidSync { get => targetPidSync; set => targetPidSync = value; }
        public int IsSync { get => isSync; set => isSync = value; }
        public string IpSegment { get => ipSegment; set => ipSegment = value; }
    }
}