| | |
| | | /// <summary> |
| | | /// 订单明细表 |
| | | /// </summary> |
| | | [SqlCodeFirst] |
| | | //[SqlCodeFirst] |
| | | [SugarTable("CoreCmsPlanOrderItem", TableDescription = "计划订单明细表")] |
| | | public class CoreCmsPlanOrderItem : BFBaseModel |
| | | { |
| | |
| | | [Required(ErrorMessage = "请输入{0}")] |
| | | public System.Decimal amount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否原始订单 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "是否原始订单")] |
| | | public bool isOld { get; set; } = false; |
| | | |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 数量 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public System.Int32 numsnew { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 数量 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public System.Decimal amountnew { get; set; } |
| | | |
| | | /// <summary> |
| | | /// id |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public System.Int32 idnew { get; set; } |
| | | |
| | | } |
| | | } |