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.
DS7/DSWeb/Areas/CommMng/Models/DeptModel.cs

66 lines
1.3 KiB
C#

3 years ago
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
}
2 years ago
[JsonObject]
public class WorkFlows
{
#region Public Properties
public string WorkFlowID
{
get;
set;
}
public string WorkFlowName
{
get;
set;
}
#endregion
}
3 years ago
}