| | |
| | | /// <summary> |
| | | /// 计划订单表 |
| | | /// </summary> |
| | | [SqlCodeFirst] |
| | | //[SqlCodeFirst] |
| | | public class CoreCmsPlanOrder : BFBaseModel |
| | | { |
| | | |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string statusText { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 已花费金额 |
| | | /// </summary> |
| | | [Display(Name = "已花费金额")] |
| | | |
| | | [Required(ErrorMessage = "请输入{0}")] |
| | | |
| | | |
| | | |
| | | public System.Decimal huaFeiAmount { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 调整订单金额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal orderAmounts { get; set; } |
| | | /// <summary> |
| | | /// 计划订单金额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal oldOrderAmounts { get; set; } |
| | | /// <summary> |
| | | /// 可用余额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal keYongAmounts { get; set; } |
| | | } |
| | | } |