| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.entity.ResponsibilityUnit; |
| | | import com.moral.api.pojo.dto.responsibilityUnit.ResponsibilityUnitQuery; |
| | | |
| | | public interface ResponsibilityUnitService extends IService<ResponsibilityUnit> { |
| | | |
| | |
| | | |
| | | Integer updateUnit(ResponsibilityUnit responsibilityUnit); |
| | | |
| | | void updateState(Integer id); |
| | | void updateState(Integer unitId); |
| | | |
| | | void updateInvalid(Integer id,String code); |
| | | void updateInvalid(Integer unitId,String code); |
| | | |
| | | List<ResponsibilityUnitQuery> unitQuery(); |
| | | } |