| | |
| | | import com.mzl.flower.dto.response.flower.FlowerParamListDTO; |
| | | import com.mzl.flower.entity.flower.FlowerParam; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | , @Param("idColumn")String idColumn, @Param("idValue") Object idValue); |
| | | |
| | | Map getTableDataById(@Param("tableName") String tableName, @Param("id") Long id); |
| | | |
| | | @Select("select * from t_flower_param where id = #{id}") |
| | | FlowerParam selectFlowerParamById(Long id); |
| | | } |