微调
This commit is contained in:
parent
33a327fb0c
commit
5e453dfae6
|
@ -154,6 +154,15 @@ public class AppController extends BaseController
|
|||
return success(asArticleService.selectAsArticleByArticleId(articleId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 租车协议详情
|
||||
*/
|
||||
@GetMapping(value = "/article/agreement")
|
||||
public AjaxResult getAgreementArticleInfo(Long areaId)
|
||||
{
|
||||
return success(asArticleService.getAgreementArticleInfo(areaId));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询运营区列表
|
||||
|
|
|
@ -68,4 +68,8 @@ public interface AsArticleMapper
|
|||
*/
|
||||
public int deleteAsArticleByArticleIds(Long[] articleIds);
|
||||
|
||||
/**
|
||||
* 租车协议详情
|
||||
*/
|
||||
EtArticle getAgreementArticleInfo(Long areaId);
|
||||
}
|
||||
|
|
|
@ -86,6 +86,14 @@ public interface IAsArticleService
|
|||
*/
|
||||
public String[] getTagList(Long articleId);
|
||||
|
||||
/**
|
||||
* 获取协议文章内容
|
||||
*
|
||||
* @param areaId
|
||||
* @return
|
||||
*/
|
||||
EtArticle getAgreementArticleInfo(Long areaId);
|
||||
|
||||
// /**
|
||||
// * 获取动态分类列表
|
||||
// *
|
||||
|
|
|
@ -205,6 +205,15 @@ public class AsArticleServiceImpl implements IAsArticleService
|
|||
return split;
|
||||
}
|
||||
|
||||
/**
|
||||
* 租车协议详情
|
||||
*/
|
||||
@Override
|
||||
public EtArticle getAgreementArticleInfo(Long areaId) {
|
||||
EtArticle etArticle = asArticleMapper.getAgreementArticleInfo(areaId);
|
||||
return etArticle;
|
||||
}
|
||||
|
||||
// /**
|
||||
// * 查询动态分类及数量
|
||||
// *
|
||||
|
|
|
@ -110,6 +110,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
where article_id = #{articleId}
|
||||
</select>
|
||||
|
||||
<select id="getAgreementArticleInfo" resultType="com.ruoyi.system.domain.EtArticle">
|
||||
<include refid="selectAsArticleVo"/>
|
||||
where area_id = #{areaId} and tag = 'agreement'
|
||||
</select>
|
||||
|
||||
<insert id="insertAsArticle" parameterType="EtArticle">
|
||||
insert into et_article
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
|
|
Loading…
Reference in New Issue
Block a user