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
763 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
namespace Estsh.Core.Services.IServices
{
public interface ICommonService : IBaseService<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(int empId, string url, string opType, string gridName);
public string getMinToolbar(int empId, string url, string opType);
public List<SysWebMenu> GetWebMenus(int empid, int factoryId);
}
}