123456789101112 |
- package com.ghsc.partybuild.mapper;
- import com.ghsc.partybuild.vo.publicity.PubDzzfcVo;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface PubDzzfcCQuery {
- List<PubDzzfcVo> selectPubDzzfcList(@Param("id") String id, @Param("dzzdm") String dzzdm,
- @Param("ztmc") String ztmc, @Param("fcType") String fcType);
- }
|