using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Entity.SysEntity; namespace WMS.IBLL.ISysServer { public interface IRoleWareHouseServer { List GetRoleWareHouseOneListById(int id); List GetHouseList(string UserId); Task InsertRoleWareHouse(string WareHouseNo, string RoleNo, string userId); } }