| | |
| | | public float AfterQuantity { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动前库存状态 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "变动前库存状态", DefaultValue = "0")] |
| | | public int BeforeStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动后库存状态 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "变动后库存状态", DefaultValue = "0")] |
| | | public int AfterStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动前货位主键 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "变动前货位主键")] |
| | | public int? BeforeLocationId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动后货位主键 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "变动后货位主键")] |
| | | public int? AfterLocationId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动前货位编号 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "变动前货位编号")] |
| | | public string BeforeLocationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变动后货位编号 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "变动后货位编号")] |
| | | public string AfterLocationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "备注")] |