增加盘点 erp同步
This commit is contained in:
28
src/WMS.Web.Core/Dto/Erp/ErpSave.cs
Normal file
28
src/WMS.Web.Core/Dto/Erp/ErpSave.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.Erp
|
||||
{
|
||||
/// <summary>
|
||||
/// Erp同步数据时单据头
|
||||
/// </summary>
|
||||
public class ErpSave<T>
|
||||
{
|
||||
public ErpSave(string formId,T model)
|
||||
{
|
||||
this.FormId = formId;
|
||||
this.Model = model;
|
||||
}
|
||||
/// <summary>
|
||||
/// 业务对象表单Id(必录)
|
||||
/// </summary>
|
||||
[JsonProperty("FormId")]
|
||||
public string FormId { get; set; }
|
||||
/// <summary>
|
||||
/// 单据体
|
||||
/// </summary>
|
||||
public T Model { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user