19 lines
486 B
Java
19 lines
486 B
Java
![]() |
package com.mosty.yszx.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.mosty.base.model.entity.yszx.TbYsGajgGlbm;
|
||
|
import io.swagger.annotations.ApiOperation;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
/**
|
||
|
* @author dw
|
||
|
* @since 2022/8/26
|
||
|
**/
|
||
|
@Mapper
|
||
|
public interface TbYsGajgGlbmMapper extends BaseMapper<TbYsGajgGlbm> {
|
||
|
|
||
|
@ApiOperation("删除关联部门")
|
||
|
void deleteGlbm(@Param("id") String id);
|
||
|
}
|