85d87b7a 张雷

奥体项目实时数据接口开发

1 个父辈 98eca395
package com.skua.modules.business.mapper;
import com.skua.modules.business.entity.WhatStructData;
import org.apache.ibatis.annotations.Param;
import java.util.List;
......@@ -10,4 +11,6 @@ import java.util.List;
public interface WhatStructDataMapper {
List<WhatStructData> getList();
WhatStructData getOneById(@Param("id") String id);
}
......
......@@ -6,4 +6,8 @@
select * from what_struct_data
</select>
<select id="getOneById" resultType="com.skua.modules.business.entity.WhatStructData">
select * from what_struct_data where id = #{id} limit 1
</select>
</mapper>
\ No newline at end of file
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!