12345678910111213141516171819202122 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.TmstruckReceiveResult;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.math.BigDecimal;
- import java.util.Map;
- @Mapper
- public interface TmstruckReceiveResultMapper extends IBaseMapper<TmstruckReceiveResult, BigDecimal> {
- //通过总实绩Id查询主键Id
- BigDecimal getReceiveResult(BigDecimal totalResultId);
- //计皮完成后 通过总实绩ID 更新状态 为 1
- int updateByTotalResultId(TmstruckReceiveResult tmstruckReceiveResult);
- }
|