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;
}
///
/// 预付金阈值
///
[DisplayName("预付金阈值")]
public double? MarginCalcuThreshold { get; set; }
///
/// 生效日期
///
[DisplayName("生效日期")]
public DateTime TakeEffectDate { get; set; }
}
}