ChangeGroupDTO
This commit is contained in:
parent
a0a3688237
commit
4f1184ec33
@ -0,0 +1,8 @@
|
||||
package com.wjbl.weightlosscamp.service.api.module.student.dto;
|
||||
|
||||
/**
|
||||
* @author chy
|
||||
* @since 2025-04-19 17:48
|
||||
*/
|
||||
public class ChangeGroupDTO {
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
package com.wjbl.weightlosscamp.service.api.module.student.service;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.wjbl.weightlosscamp.api.base.core.ApiResult;
|
||||
import com.wjbl.weightlosscamp.api.base.core.PageParam;
|
||||
import com.wjbl.weightlosscamp.service.api.module.student.dto.ChangeGroupDTO;
|
||||
import jakarta.validation.Valid;
|
||||
|
||||
public class ChangeGroupService {
|
||||
|
||||
/**
|
||||
* 新增团购添加
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
public ApiResult<Void> add(@Valid ChangeGroupDTO dto) {
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询团购添加
|
||||
* @param param
|
||||
* @return
|
||||
*/
|
||||
public ApiResult<Page<ChangeGroupDTO>> list(@Valid PageParam<ChangeGroupDTO> param) {
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user