package com.qianwen.smartman.modules.fms.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import java.util.List;
|
import com.qianwen.smartman.modules.fms.entity.FmsRealTimeTray;
|
|
public interface FmsRealTimeTrayMapper extends BaseMapper<FmsRealTimeTray> {
|
boolean updateReduction(List<String> trayCodes, String areaCode);
|
}
|