提交 36cbb0c1 authored 作者: chaoyanjun's avatar chaoyanjun

--no commit message

上级 be3bd68e
......@@ -49,13 +49,13 @@ public class TypographicManage {
* @param bookType
* @return
*/
public BookTypographicDesign queryBySubjectAndBookType(String subjectNum, String bookType) {
public List<BookTypographicDesign> queryBySubjectAndBookType(String subjectNum, String bookType) {
Example example = new Example(BookTypographicDesign.class);
example.createCriteria()
.andEqualTo("subjectNum", subjectNum)
.andEqualTo("bookType", bookType);
return mapper.selectOneByExample(example);
return mapper.selectByExample(example);
}
public List<BookTypographicDesign> select(BookTypographicDesign design) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论