package com.huaheng.pc.config.zone.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.huaheng.pc.config.zone.domain.Zone; import org.apache.ibatis.annotations.Param; public interface ZoneMapper extends BaseMapper<Zone> { /* 复制库区表*/ int zoneCopy(@Param("code") String code,@Param("newCode") String newCode); }