Compare commits

...

2 Commits

Author SHA1 Message Date
孙小云 a3577b01d1 测试 2026-01-20 13:39:42 +08:00
孙小云 3bf5b6ddff 创建分组接口完成 2026-01-20 13:38:15 +08:00
1 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
/**
* 分组Service业务层处理
*
@ -67,7 +68,9 @@ public class GroupServiceImpl implements IGroupService
@Override
public Long createGroup(GroupDTO groupDTO)
{
return null;
Group model = GroupServiceConvert.toModel(groupDTO);
groupDomain.insertGroup(model);
return model.getGroupId();
}
@Override