using System; using System.Collections.Generic; using System.Linq; using System.Text; using Muchinfo.MTPClient.Data.Helper; namespace Muchinfo.MTPClient.Data.Model { public class ParameterConfig { ///// ///// 参数ID ///// //public Int32 ParamId { get; set; } /// /// 参数代码 /// [PropertyDisc("code")] public string ParamCode { get; set; } /// /// 参数名 /// [PropertyDisc("Name")] public string ParamName { get; set; } /// /// 参数值 /// [PropertyDisc("Value")] public string ParamValue { get; set; } /// /// 参数备注 /// [PropertyDisc("Remark")] public string Remark { get; set; } } public class MTPSystemConfig { /// /// 参数ID /// [PropertyDisc("SYSTEMCONFIGID")] public int SYSTEMCONFIGID { get; set; } /// /// 参数值 /// [PropertyDisc("systemconfigvalue")] public string systemconfigvalue { get; set; } /// /// 有效状态 /// [PropertyDisc("validstatus")] public string validstatus { get; set; } } }