1. 重命名枚举项与实体字段,修正类型引用 2. 新增IsNull扩展方法与多项字符串处理扩展 3. 新增大量业务DTO、服务接口与枚举定义 4. 重构RabbitMQ服务实现,替换旧版消息队列组件 5. 优化签到服务的宠物喂养事务逻辑 6. 移除冗余的项目引用与旧版消息队列代码 7. 新增Excel导出、导入模板相关工具方法
49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
|
|
using QYZH.InteractiveMagazine.Models.Dto.Journal;
|
|
using QYZH.InteractiveMagazine.Models.Dto.DotMatrix;
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
|
using QYZH.InteractiveMagazine.Models.Dto;
|
|
using QYZH.InteractiveMagazine.Models.Entity;
|
|
|
|
namespace QYZH.InteractiveMagazine.IService;
|
|
|
|
public interface IJournalService : IBaseService<Journal>
|
|
{
|
|
/// <summary>
|
|
/// 查询List
|
|
/// </summary>
|
|
/// <param name="dto"></param>
|
|
/// <returns></returns>
|
|
Task<List<JournalDto>> GetListAsync(JournalQueryDto dto);
|
|
|
|
/// <summary>
|
|
/// 分页查询
|
|
/// </summary>
|
|
/// <param name="search"></param>
|
|
/// <returns></returns>
|
|
Task<PageListModel<JournalDto>> GetPageListAsync(PageQueryModel<JournalQueryDto> search);
|
|
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<BaseResponse<bool>> EditAsync(JournalEditDto input);
|
|
|
|
Task<List<JournalTaskOutput>> Tasks(long id);
|
|
|
|
Task<JournalDto> DetailAsync(long id);
|
|
|
|
Task<bool> DeleteAsync(List<long> id);
|
|
|
|
|
|
Task<bool> StartPageAsync(long Id, int Index);
|
|
|
|
Task<bool> StatusAsync(long id, JournalStatusEnum status);
|
|
|
|
Task<DotMatrixOutput> PrintCodeAsync(long id);
|
|
|
|
Task<bool> ResultReportAsync(DotMatrixNoteJournalReportInput input);
|
|
}
|