using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace WebAPI.Models
|
{
|
public class SystemParameter
|
{
|
public long HInterID { get; set; }
|
public long HItemID { get; set; }
|
public string HModClass { get; set; }
|
public string HKey { get; set; }
|
|
public string HCaption { get; set; }
|
|
public string Hvalue { get; set; }
|
|
public string HReadonly { get; set; }
|
|
public string HExplanation { get; set; }
|
|
|
public string HFarmat { get; set; }
|
}
|
}
|