forked from sdksdk0/taotaoMalls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
142 additions
and
3 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
taotao-manager/taotao-manager-service/src/main/java/cn/tf/taotao/service/ContentService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,42 @@ | ||
package cn.tf.taotao.service; | ||
|
||
import cn.tf.taotao.common.pojo.EUDResult; | ||
import cn.tf.taotao.common.utils.TaotaoResult; | ||
import cn.tf.taotao.po.TbContent; | ||
import cn.tf.taotao.po.TbContentCategory; | ||
|
||
public interface ContentService { | ||
/** | ||
* 插入操作 | ||
* | ||
* @param content | ||
* @return | ||
*/ | ||
TaotaoResult insertContent(TbContent content); | ||
|
||
/** | ||
* 列表 | ||
* @param page | ||
* @param rows | ||
* @return | ||
*/ | ||
EUDResult getContentList(long page, long pageSize); | ||
|
||
/** | ||
* 删除 | ||
* @param ids | ||
* @return | ||
*/ | ||
TaotaoResult deleteContent(String ids); | ||
|
||
/** | ||
* 更新操作 | ||
* | ||
* @param content | ||
* @return | ||
*/ | ||
TaotaoResult updateContent(TbContent content); | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...manager-web/src/main/webapp/META-INF/maven/cn.tf.taotao/taotao-manager-web/pom.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters