| | |
| | | |
| | | import com.zy.third.entity.ExdOutstockSource; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.third.entity.ExdUser; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | /** |
| | | * @author zc857 |
| | | * @description 针对表【Exd_Outstock_Source】的数据库操作Mapper |
| | | * @createDate 2025-09-23 08:36:03 |
| | | * @createDate 2025-09-24 08:20:14 |
| | | * @Entity com.zy.third.entity.ExdOutstockSource |
| | | */ |
| | | public interface ExdOutstockSourceMapper extends BaseMapper<ExdOutstockSource> { |
| | | |
| | | |
| | | List<String> listOrderNo(); |
| | | |
| | | List<ExdOutstockSource> listAll(@Param("fbillno") String fbillno); |
| | | List<ExdOutstockSource> deletelistOrderNo(); |
| | | |
| | | List<ExdOutstockSource> listAll(@Param("orderNo") String orderNo); |
| | | } |