新增分割

This commit is contained in:
he
2026-03-10 14:23:56 +08:00
parent 1a39d03c7e
commit 01058d42d3
11 changed files with 22610 additions and 1 deletions
@@ -0,0 +1,30 @@
//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2026-03-10 06:17:31Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Infrastructure.Extention;
using System.Threading.Tasks;
using IRaCIS.Core.Application.ViewModel;
namespace IRaCIS.Core.Application.Interfaces;
public interface ISegmentationService
{
Task<PageOutput<SegmentationView>> GetSegmentationList(SegmentationQuery inQuery);
Task<IResponseOutput> AddOrUpdateSegmentation(SegmentationAddOrEdit addOrEditSegmentation);
Task<IResponseOutput> DeleteSegmentation(Guid segmentationId);
Task<PageOutput<SegmentView>> GetSegmentList(SegmentQuery inQuery);
Task<IResponseOutput> AddOrUpdateSegment(SegmentAddOrEdit addOrEditSegment);
Task<IResponseOutput> DeleteSegment(Guid segmentId);
}