/*
|
*所有关于dt_Machineinfo类的业务代码接口应在此处编写
|
*/
|
using WIDESEA_Core.BaseProvider;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_Core.Utilities;
|
using System.Linq.Expressions;
|
using Microsoft.AspNetCore.Mvc;
|
namespace WIDESEA_WCS.IServices
|
{
|
public partial interface Idt_MachineinfoService
|
{
|
/// <summary>
|
/// 修改传输文件状态
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent UpdateEnable(string saveModel);
|
/// <summary>
|
/// 传输文件状态设为禁止
|
/// </summary>
|
/// <param name="saveModel"></param>
|
/// <returns></returns>
|
public WebResponseContent UpdateDisEnable(string saveModel);
|
}
|
}
|