You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
438 B
16 lines
438 B
package com.spring.modules.quote.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.spring.modules.quote.entity.QuoteDetailTest;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface QuoteDetailTestMapper extends BaseMapper<QuoteDetailTest> {
|
|
|
|
|
|
List<QuoteDetailTest> queryQuoteDetailTest(QuoteDetailTest quoteDetailTest);
|
|
|
|
int queryItemNo(QuoteDetailTest test);
|
|
}
|