PubDzzfcCQuery.java 390 B

123456789101112
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.vo.publicity.PubDzzfcVo;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. public interface PubDzzfcCQuery {
  6. List<PubDzzfcVo> selectPubDzzfcList(@Param("id") String id, @Param("dzzdm") String dzzdm,
  7. @Param("ztmc") String ztmc, @Param("fcType") String fcType);
  8. }