using BaseOUDAL;
namespace YLErp.Model
{
public class margin_template_v2Req : BaseSearchReq
{
///
/// 主键
///
public int id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 单腿/多腿
///
public int? MarginType { get; set; }
///
/// 预付金规则
///
public int? RuleType { get; set; }
///
/// 适用结构
///
public string TradeType { get; set; }
///
/// 备注
///
public string Comments { get; set; }
///
/// 是否为默认预付金规则
/// 系统默认规则: IsDefault:true && IsForClient: false
/// 客户默认规则: IsDefault:true && IsForClient: true
/// 自定义规则: IsDefault:false && IsForClient: false
///
public bool IsDefault { get; set; }
///
/// 是否为客户预付金规则
/// 系统默认规则: IsDefault:true && IsForClient: false
/// 客户默认规则: IsDefault:true && IsForClient: true
/// 自定义规则: IsDefault:false && IsForClient: false
///
public bool IsForClient { get; set; }
///
/// 是否有效
///
public bool? IsValid { get; set; }
}
}