Files
zszq-trs/YLErpDAL/Model/margin_template_v2Req.cs
T
2024-05-09 14:06:26 +08:00

59 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
/// 是否为默认预付金规则
/// 系统默认规则: IsDefaulttrue && IsForClient: false
/// 客户默认规则: IsDefaulttrue && IsForClient: true
/// 自定义规则: IsDefaultfalse && IsForClient: false
/// </summary>
public bool IsDefault { get; set; }
/// <summary>
/// 是否为客户预付金规则
/// 系统默认规则: IsDefaulttrue && IsForClient: false
/// 客户默认规则: IsDefaulttrue && IsForClient: true
/// 自定义规则: IsDefaultfalse && IsForClient: false
/// </summary>
public bool IsForClient { get; set; }
/// <summary>
/// 是否有效
/// </summary>
public bool? IsValid { get; set; }
}
}