24 lines
614 B
C#
24 lines
614 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 工艺建模字典表service接口
|
|
/// </summary>
|
|
public interface IProModelDictionaryService : IBaseService<ProModelDictionary>
|
|
{
|
|
PagedInfo<ProModelDictionaryDto> GetList(ProModelDictionaryQueryDto parm);
|
|
|
|
ProModelDictionary GetInfo(long Id);
|
|
|
|
ProModelDictionary AddProModelDictionary(ProModelDictionary parm);
|
|
|
|
int UpdateProModelDictionary(ProModelDictionary parm);
|
|
|
|
}
|
|
}
|