| | |
| | | /// <summary> |
| | | /// 铺货 |
| | | /// </summary> |
| | | |
| | | |
| | | public class Puhuo : BFBaseModel |
| | | { |
| | | /// <summary> |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 调整标题 |
| | | /// </summary> |
| | | [Display(Name = "调整标题")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string tiaozhengbiaoti { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 调整数量 |
| | | /// </summary> |
| | | [Display(Name = "调整数量")] |
| | |
| | | public System.Int32 tiaozhengnums { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 学校名称 |
| | | /// </summary> |
| | | [Display(Name = "学校名称")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string schoolName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 收款数量 |
| | | /// </summary> |
| | | [Display(Name = "收款数量")] |
| | | [SugarColumn(ColumnDescription = "收款数量", IsNullable = true, DefaultValue = "0")] |
| | | public System.Int32? shoukuannums { get; set; } = 0; |
| | | /// <summary> |
| | | /// 金额 |
| | | /// </summary> |
| | | [Display(Name = "收款金额")] |
| | | [SugarColumn(ColumnDescription = "收款金额", IsNullable = true,DefaultValue = "0", Length = 18, DecimalDigits = 4)] |
| | | public System.Decimal? shoukuanamount { get; set; } = new decimal(0); |
| | | |
| | | |
| | | } |
| | | } |