using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Entity.SysEntity; namespace WMS.IDAL.ISysInterface { public interface IStorageRoadwayRepository:IBaseRepository { /// /// 编辑巷道状态 /// /// 实体类 /// int EditStorageRoadwayStatus(SysStorageRoadway model); } }