TSubmittedMapper.java 412 B

123456789101112
  1. package com.steerinfo.ems.tsubmitted.mapper;
  2. import com.steerinfo.ems.tsubmitted.model.TSubmitted;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. @Mapper
  8. public interface TSubmittedMapper extends IBaseMapper<TSubmitted, String> {
  9. String selectMaxId(@Param(value = "signtime") String mouth);
  10. }