LocationMapper.java 399 Bytes
package com.huaheng.pc.config.location.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.huaheng.pc.config.location.domain.Location;
import org.apache.ibatis.annotations.Param;

public interface LocationMapper extends BaseMapper<Location> {

    void updateStatus(@Param("warehouseCode") String warehouseCode, @Param("code") String code, @Param("status") String status);

}