Administrator
3 years ago
9 changed files with 352 additions and 51 deletions
@ -0,0 +1,63 @@ |
|||||
|
using Magicodes.ExporterAndImporter.Core; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using Win.Sfs.Shared.DomainBase; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Entities.HQ_F |
||||
|
{ |
||||
|
|
||||
|
//行号
|
||||
|
//零件号
|
||||
|
//零件中文名称
|
||||
|
//需求数
|
||||
|
//已接收数
|
||||
|
//订货看板编号
|
||||
|
//手工或自动
|
||||
|
//收货仓库
|
||||
|
//收货仓库描述
|
||||
|
//交货时间
|
||||
|
//发货状态
|
||||
|
//供应商
|
||||
|
|
||||
|
public class HQ_F_Kanban:FullAuditedAggregateRootBase<Guid> |
||||
|
{ |
||||
|
[ExporterHeader(DisplayName = "行号")] |
||||
|
public string PoLine { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件号")] |
||||
|
public string MaterialCode { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件中文名称 ")] |
||||
|
public string MaterialDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货数量")] |
||||
|
public decimal Qty { get; set; } |
||||
|
[ExporterHeader(DisplayName = "订货看板编号")] |
||||
|
public string Kanban { set; get; } |
||||
|
[ExporterHeader(DisplayName = "手工或自动")] |
||||
|
public string IsAuto { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库")] |
||||
|
public string Warehouse { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库描述 ")] |
||||
|
public string WarehouseDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "供应商")] |
||||
|
public string Supplier { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货状态")] |
||||
|
public string State { set; get; } |
||||
|
|
||||
|
public HQ_F_Kanban(Guid id,string poLine, string materialCode, string materialDesc, decimal qty, string kanban, string isAuto, string warehouse, string warehouseDesc, string supplier, string state):base(id) |
||||
|
{ |
||||
|
Id = id; |
||||
|
PoLine = poLine; |
||||
|
MaterialCode = materialCode; |
||||
|
MaterialDesc = materialDesc; |
||||
|
Qty = qty; |
||||
|
Kanban = kanban; |
||||
|
IsAuto = isAuto; |
||||
|
Warehouse = warehouse; |
||||
|
WarehouseDesc = warehouseDesc; |
||||
|
Supplier = supplier; |
||||
|
State = state; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,63 @@ |
|||||
|
using Magicodes.ExporterAndImporter.Core; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using Win.Sfs.Shared.DomainBase; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Entities.HQ_F |
||||
|
{ |
||||
|
|
||||
|
//行号
|
||||
|
//零件号
|
||||
|
//零件中文名称
|
||||
|
//需求数
|
||||
|
//已接收数
|
||||
|
//订货看板编号
|
||||
|
//手工或自动
|
||||
|
//收货仓库
|
||||
|
//收货仓库描述
|
||||
|
//交货时间
|
||||
|
//发货状态
|
||||
|
//供应商
|
||||
|
|
||||
|
public class HQ_H_Kanban:FullAuditedAggregateRootBase<Guid> |
||||
|
{ |
||||
|
[ExporterHeader(DisplayName = "行号")] |
||||
|
public string PoLine { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件号")] |
||||
|
public string MaterialCode { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件中文名称 ")] |
||||
|
public string MaterialDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货数量")] |
||||
|
public decimal Qty { get; set; } |
||||
|
[ExporterHeader(DisplayName = "订货看板编号")] |
||||
|
public string Kanban { set; get; } |
||||
|
[ExporterHeader(DisplayName = "手工或自动")] |
||||
|
public string IsAuto { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库")] |
||||
|
public string Warehouse { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库描述 ")] |
||||
|
public string WarehouseDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "供应商")] |
||||
|
public string Supplier { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货状态")] |
||||
|
public string State { set; get; } |
||||
|
|
||||
|
public HQ_H_Kanban(Guid id,string poLine, string materialCode, string materialDesc, decimal qty, string kanban, string isAuto, string warehouse, string warehouseDesc, string supplier, string state):base(id) |
||||
|
{ |
||||
|
Id = id; |
||||
|
PoLine = poLine; |
||||
|
MaterialCode = materialCode; |
||||
|
MaterialDesc = materialDesc; |
||||
|
Qty = qty; |
||||
|
Kanban = kanban; |
||||
|
IsAuto = isAuto; |
||||
|
Warehouse = warehouse; |
||||
|
WarehouseDesc = warehouseDesc; |
||||
|
Supplier = supplier; |
||||
|
State = state; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,63 @@ |
|||||
|
using Magicodes.ExporterAndImporter.Core; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using Win.Sfs.Shared.DomainBase; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Entities.HQ_F |
||||
|
{ |
||||
|
|
||||
|
//行号
|
||||
|
//零件号
|
||||
|
//零件中文名称
|
||||
|
//需求数
|
||||
|
//已接收数
|
||||
|
//订货看板编号
|
||||
|
//手工或自动
|
||||
|
//收货仓库
|
||||
|
//收货仓库描述
|
||||
|
//交货时间
|
||||
|
//发货状态
|
||||
|
//供应商
|
||||
|
|
||||
|
public class HQ_M_Kanban:FullAuditedAggregateRootBase<Guid> |
||||
|
{ |
||||
|
[ExporterHeader(DisplayName = "行号")] |
||||
|
public string PoLine { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件号")] |
||||
|
public string MaterialCode { set; get; } |
||||
|
[ExporterHeader(DisplayName = "零件中文名称 ")] |
||||
|
public string MaterialDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货数量")] |
||||
|
public decimal Qty { get; set; } |
||||
|
[ExporterHeader(DisplayName = "订货看板编号")] |
||||
|
public string Kanban { set; get; } |
||||
|
[ExporterHeader(DisplayName = "手工或自动")] |
||||
|
public string IsAuto { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库")] |
||||
|
public string Warehouse { set; get; } |
||||
|
[ExporterHeader(DisplayName = "收货仓库描述 ")] |
||||
|
public string WarehouseDesc { set; get; } |
||||
|
[ExporterHeader(DisplayName = "供应商")] |
||||
|
public string Supplier { set; get; } |
||||
|
[ExporterHeader(DisplayName = "发货状态")] |
||||
|
public string State { set; get; } |
||||
|
|
||||
|
public HQ_M_Kanban(Guid id,string poLine, string materialCode, string materialDesc, decimal qty, string kanban, string isAuto, string warehouse, string warehouseDesc, string supplier, string state):base(id) |
||||
|
{ |
||||
|
Id = id; |
||||
|
PoLine = poLine; |
||||
|
MaterialCode = materialCode; |
||||
|
MaterialDesc = materialDesc; |
||||
|
Qty = qty; |
||||
|
Kanban = kanban; |
||||
|
IsAuto = isAuto; |
||||
|
Warehouse = warehouse; |
||||
|
WarehouseDesc = warehouseDesc; |
||||
|
Supplier = supplier; |
||||
|
State = state; |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue