Files
WMS-Api/src/WMS.Web.Core/Dto/Erp/ErpSave.cs
2023-11-02 11:44:27 +08:00

29 lines
643 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}