using System; using System.Collections.Generic; using System.Linq; using System.Text; using Muchinfo.MTPClient.Data.Enums; namespace Muchinfo.MTPClient.Data.Model { public class ParameterRule { /// /// 商品代码 /// public string GoodsCode { get; set; } /// /// 商品名称 /// public string GoodsName { get; set; } /// /// 保证金收取方式 /// public ChargeModeType MarketMarginType { get; set; } /// /// 即市保证金增量 /// public decimal MarketMargin { get; set; } } }