派生自 projectDept/qhighschool

yn147
2023-11-24 26780c533f2c2af6b9216306f649c1bcede94e4a
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);
}