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.
22 lines
846 B
C#
22 lines
846 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.IRepositories
|
|
{
|
|
public interface ICommonRepository : IBaseRepository<SysFactory>
|
|
{
|
|
public List<KeyValueResult> getFactoryInfo();
|
|
public List<KeyValueResult> getDeptInfo();
|
|
public List<KeyValueResult> getShiftInfo();
|
|
public List<KeyValueResult> GetSysEnum(String enumType);
|
|
public List<KeyValueResult> getVendorInfo();
|
|
public List<KeyValueResult> getModelTypeInfo();
|
|
public List<SysProgramFunOp> getOpMenuList(string url, string opType, string gridName);
|
|
public List<SysProgramFunOp> getOpMenuListByUser(int empId, string url, string opType, string gridName);
|
|
public List<SysWebMenu> GetWebMenus(int empid, int factoryId);
|
|
|
|
}
|
|
}
|