/* *所有关于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 { /// /// 修改传输文件状态 /// /// public WebResponseContent UpdateEnable(string saveModel); /// /// 传输文件状态设为禁止 /// /// /// public WebResponseContent UpdateDisEnable(string saveModel); } }