package com.panzhihua.service_community.dao;
|
|
import com.panzhihua.common.model.vos.community.ComActDiscussOptionVO;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.panzhihua.service_community.model.dos.ComActDiscussOptionDO;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 一起议选项
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2021-01-22 15:27
|
**/
|
@Mapper
|
public interface ComActDiscussOptionDAO extends BaseMapper<ComActDiscussOptionDO> {
|
// @Select("<script> " +
|
// " <where>" +
|
// "<if test='nameCn != null and nameCn.trim() != ""'>" +
|
// " </if> " +
|
// "<if test='nameCn != null and nameCn.trim() != ""'>" +
|
// " </if> " +
|
// "<if test='nameCn != null and nameCn.trim() != ""'>" +
|
// " </if> " +
|
// " </where>" +
|
// "</script>")
|
|
List<ComActDiscussOptionVO> getDiscussOptionList(@Param("discussId") Long discussId);
|
}
|