You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
998 B
C#
47 lines
998 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class DeptModel
|
|
{
|
|
#region private Fields
|
|
private string _GID = String.Empty;
|
|
private string _deptno = String.Empty;
|
|
private string _deptname = String.Empty;
|
|
private string _manage1 = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
public string Deptno
|
|
{
|
|
get { return _deptno; }
|
|
set { _deptno = value; }
|
|
}
|
|
public string DeptName
|
|
{
|
|
get { return _deptname; }
|
|
set { _deptname = value; }
|
|
}
|
|
public string Manage1
|
|
{
|
|
get { return _manage1; }
|
|
set { _manage1 = value; }
|
|
}
|
|
public string NOANDNAME { get; set; }
|
|
#endregion
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|