New file |
| | |
| | | package com.moral.api.service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.entity.ResponsibilityUnit; |
| | | |
| | | public interface ResponsibilityUnitService extends IService<ResponsibilityUnit> { |
| | | |
| | | |
| | | Integer insert(ResponsibilityUnit responsibilityUnit); |
| | | |
| | | Map<String, Object> selectUnit(Map<String, Object> parameters); |
| | | |
| | | Integer updateUnit(ResponsibilityUnit responsibilityUnit); |
| | | |
| | | void updateState(Integer unitId); |
| | | |
| | | void updateInvalid(Integer unitId,String code); |
| | | } |