组织架构考勤规则修改二次提交

This commit is contained in:
fl 2024-12-02 19:50:17 +08:00
parent 3b9b6b345b
commit 40d56c56e4
3 changed files with 3 additions and 3 deletions

View File

@ -63,5 +63,5 @@ public interface OrgChangeDao {
*/ */
int orgChangeCheck(OrgChangeBean o); int orgChangeCheck(OrgChangeBean o);
MapVo getAttGroupList(); List<MapVo> getAttGroupList();
} }

View File

@ -56,5 +56,5 @@ public interface OrgChangeService {
*/ */
int orgChangeCheck(OrgChangeBean o); int orgChangeCheck(OrgChangeBean o);
MapVo getAttGroupList(); List<MapVo> getAttGroupList();
} }

View File

@ -93,7 +93,7 @@ public class OrgChangeServiceImpl implements OrgChangeService {
} }
@Override @Override
public MapVo getAttGroupList() { public List<MapVo> getAttGroupList() {
return orgChangeDao.getAttGroupList(); return orgChangeDao.getAttGroupList();
} }