29 lines
775 B
C#
29 lines
775 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessDto;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.RPC.ErpRPC.Dto.In
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 业务参数
|
||
|
|
/// </summary>
|
||
|
|
public class ActionParam<T> where T : BusinessParamBase
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 业务类型
|
||
|
|
/// </summary>
|
||
|
|
public string ActionID { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 单厂接口时可以不传;集团版系统对接则传main
|
||
|
|
/// </summary>
|
||
|
|
public string GroupManagementDistributedFactoryID { get; set; } = string.Empty;
|
||
|
|
/// <summary>
|
||
|
|
/// 业务参数
|
||
|
|
/// </summary>
|
||
|
|
public T Data { get; set; }
|
||
|
|
}
|
||
|
|
}
|