You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
C#
15 lines
361 B
C#
using WebApiClient.Attributes;
|
|
|
|
namespace WebApiClient
|
|
{
|
|
public interface IMyWebApi : IHttpApi
|
|
{
|
|
/// <summary>
|
|
/// 提交MES
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost("http://10.46.7.219:8100/manufacturing/IntegrationServlet?")]
|
|
ITask<string> PostToMes([PathQuery] RequestVM requestVM);
|
|
}
|
|
}
|