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