26 lines
704 B
C#
26 lines
704 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("margincalculationthreshold")]
|
|
public class MarginCalculationThreshold: DBModelWithOperator
|
|
{
|
|
[DisplayName("客户人员")]
|
|
public int? ClientId { get; set; }
|
|
[NotMapped]
|
|
public string ClientName {
|
|
get;set;
|
|
}
|
|
/// <summary>
|
|
/// 预付金阈值
|
|
/// </summary>
|
|
[DisplayName("预付金阈值")]
|
|
public double? MarginCalcuThreshold { get; set; }
|
|
/// <summary>
|
|
/// 生效日期
|
|
/// </summary>
|
|
[DisplayName("生效日期")]
|
|
public DateTime TakeEffectDate { get; set; }
|
|
}
|
|
}
|