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.
63 lines
1.3 KiB
C#
63 lines
1.3 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class OPLBModel
|
|
{
|
|
#region 业务类型
|
|
private string _OPLB = "";
|
|
/// <summary>
|
|
/// OPLB
|
|
/// </summary>
|
|
public string OPLB
|
|
{
|
|
get { return _OPLB; }
|
|
set { _OPLB = value; }
|
|
}
|
|
|
|
private string _OPLBNAME = "";
|
|
/// <summary>
|
|
/// OPLBNAME
|
|
/// </summary>
|
|
public string OPLBNAME
|
|
{
|
|
get { return _OPLBNAME; }
|
|
set { _OPLBNAME = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
|
|
[JsonObject]
|
|
public class VALUEModel
|
|
{
|
|
|
|
private string _VALUEFIELD = "";
|
|
public string VALUEFIELD
|
|
{
|
|
get { return _VALUEFIELD; }
|
|
set { _VALUEFIELD = value; }
|
|
}
|
|
}
|
|
|
|
[JsonObject]
|
|
public class DICModel
|
|
{
|
|
|
|
private string _KEYFIELD = "";
|
|
public string KEYFIELD
|
|
{
|
|
get { return _KEYFIELD; }
|
|
set { _KEYFIELD = value; }
|
|
}
|
|
private string _VALUEFIELD = "";
|
|
public string VALUEFIELD
|
|
{
|
|
get { return _VALUEFIELD; }
|
|
set { _VALUEFIELD = value; }
|
|
}
|
|
}
|
|
}
|