19 lines
575 B
C#
19 lines
575 B
C#
|
using Abp.Application.Services;
|
|||
|
using Abp.Application.Services.Dto;
|
|||
|
using MineTec.ProManager.FigureNumber.Dto;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace MineTec.ProManager.FigureNumber
|
|||
|
{
|
|||
|
public interface IFigureNumberAppService : IAsyncCrudAppService<//定义了CRUD方法
|
|||
|
FigureNumberDto, //用来展示图号编码信息
|
|||
|
Guid, //FigureNumber实体的主键
|
|||
|
PagedResultRequestDto, //获取图号编码信息的时候用于分页
|
|||
|
FigureNumberDto, //用于创建图号编码
|
|||
|
FigureNumberDto> //用于更新图号编码信息
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|