派生自 projectDept/qhighschool

yn147
2023-11-23 42c48ce1d64e941d28c7bfe4093f9659e77bd523
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.qxueyou.scc.admin.graduation;
 
import com.qxueyou.scc.base.model.Result;
 
/**
 * 毕业情况管理
 */
public interface GraduationService {
    /**
     *添加修改毕业状态
     * @param studentIds
     * @return
     */
    Result graduationAddAndUp(String[] studentIds, String graduationText);
}