You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
284 B
Java
11 lines
284 B
Java
5 years ago
|
package com.jingcheng.cms.mapper;
|
||
|
|
||
|
import com.jingcheng.cms.model.Article;
|
||
|
import com.jingcheng.cms.util.CommonMapper;
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
@Repository
|
||
|
public interface ArticleMapper extends CommonMapper<Article> {
|
||
|
int addArticle(Article article);
|
||
|
}
|