| | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")] |
| | | public int WarehouseId { get; set; } |
| | | |
| | | [ImporterHeader(Name = "物料详情")] |
| | | [ExporterHeader(DisplayName = "物料详情")] |
| | | [ImporterHeader(Name = "单据编号")] |
| | | [ExporterHeader(DisplayName = "单据编号")] |
| | | [CodeRule(WIDESEA_Core.Enums.RuleCode.InboundOrderRule)] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "物料详情")] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单据编号")] |
| | | public string OrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 单据编号 |
| | | /// </summary> |
| | | [CodeRule(WIDESEA_Core.Enums.RuleCode.InboundOrderRule)] |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "单据编号")] |
| | | public string InboundOrderNo { get; set; } |
| | | ///// <summary> |
| | | ///// 单据编号 |
| | | ///// </summary> |
| | | //[CodeRule(WIDESEA_Core.Enums.RuleCode.InboundOrderRule)] |
| | | //[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "单据编号")] |
| | | //public string InboundOrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 上游单据编号 |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")] |
| | | public string Remark { get; set; } |
| | | [ImporterHeader(Name = "单据小类")] |
| | | [ExporterHeader(DisplayName = "单据小类")] |
| | | |
| | | /// <summary> |
| | | /// 单据小类 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "单据小类")] |
| | | public string TransactionCode { get; set; } |
| | | [ImporterHeader(Name = "出入库类型")] |
| | | [ExporterHeader(DisplayName = "出入库类型")] |
| | | /// <summary> |
| | | /// 出入库类型 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "出入库类型")] |
| | | public string InoutType { get; set; } |
| | | |