package cn.autoform.web.mapper.masterdata; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import cn.autoform.db.entity.MasterDefineEntity; import cn.autoform.db.entity.MasterElementEntity; import cn.autoform.db.entity.MasterValueEntity; @Mapper public interface MasterDataMapper { List queryMasterDefines(@Param("tenantID") String tenantID,@Param("name") String name); List queryMasterElements(@Param("tenantID") String tenantID,@Param("code") String code); List queryMasterValues(@Param("tenantID") String tenantID, @Param("defineCode") String code, @Param("eleCode") String eleCode); }