Commit 69600a6e authored by 徐俊's avatar 徐俊

xujun

parent d642228b
......@@ -11,4 +11,5 @@ import java.util.List;
public interface ComProjectKpitDAO extends BaseMapper<ComProjectKpit>, BaseDAO<ComProjectKpitQueryVO, ComProjectKpitDTO, ComProjectKpit> {
List<ComProjectKpitDTO> getProjectKpit();
}
......@@ -48,4 +48,5 @@ public class ComProjectKpit extends BaseEntity {
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}
......@@ -64,4 +64,5 @@ public class ComProjectKpitDTO extends BaseDTO {
/** 年度3指标 */
@ApiModelProperty(value = "年度3指标", position = 7)
private Integer yearValue3;
}
......@@ -25,4 +25,5 @@ public class ProjectKPIStatisticDTO extends BaseDTO {
private Integer serviceTarget; //二级指标(服务对象满意度指标)
private List<ComProjectKpitDTO> threeLevel;
}
......@@ -48,4 +48,5 @@ public class ComProjectKpitQueryVO extends PaginationVO {
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}
......@@ -35,4 +35,5 @@ public class ComProjectKpitController extends BaseController<ComProjectKpitServi
dto.setThreeLevel(ProjectKPIList);
return ResponseDataModel.ok(dto);
}
}
......@@ -11,4 +11,5 @@ import java.util.List;
public interface ComProjectKpitService extends BaseService<ComProjectKpitQueryVO, ComProjectKpitDTO, ComProjectKpit> {
List<ComProjectKpitDTO> getProjectKpitStatistic();
}
......@@ -72,4 +72,5 @@ public class ComProjectKpitServiceImpl extends BaseServiceImpl<ComProjectKpitDAO
}
return list;
}
}
......@@ -10,4 +10,5 @@
<select id="getProjectKpit" resultType="com.yiboshi.science.param.dto.ComProjectKpitDTO">
select * from com_project_kpit order by type_id, id
</select>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment