using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Muchinfo.MTPClient.Data.Model.GoodRules
{
public class GoodsRuleModel
{
private int _Ruleid = int.MinValue;
///
/// 规则id
///
public int Ruleid
{
get
{
return _Ruleid;
}
set
{
_Ruleid = value;
}
}
private string _RuleName = "";
///
/// 规则名称
///
public string RuleName
{
get
{
return _RuleName;
}
set
{
_RuleName = value;
}
}
private double _ParamValue = int.MinValue;
///
/// 参数值
///
public double ParamValue
{
get
{
return _ParamValue;
}
set
{
_ParamValue = value;
}
}
}
}