新增项目概况字段

This commit is contained in:
马三炮 2025-06-09 16:21:20 +08:00
parent 0ac0aee62f
commit 66d4cd6e0a
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@
select tp.id as id,tp.depart_id as departId,td.depart_name as departName,tp.pro_name as proName,
A.dict_name as voltageLevel,tp.line_length as lineLength,
tp.plan_start_time as planStartTime,tp.plan_end_time as planEndTime,tp.lon as lon,tp.lat as lat,
tp.address as address,B.dict_name as pro_status
tp.address as address,B.dict_name as pro_status,,tp.project_overview as projectOverview
from tb_project tp
left join tb_depart td on tp.depart_id = td.id
LEFT JOIN (
@ -83,13 +83,13 @@
<select id="getTbProjectById" resultType="com.bonus.digitalSignage.basic.vo.TbProjectVo">
select tp.id as id,depart_id as departId,tp.pro_name as proName,tp.voltage_level as voltageLevel,tp.line_length as lineLength,
tp.plan_start_time as planStartTime,tp.plan_end_time as planEndTime,tp.lon as lon,tp.lat as lat,
tp.address as address,tp.pro_status as pro_status
tp.address as address,tp.pro_status as pro_status,tp.project_overview as projectOverview
from tb_project tp where id = #{id}
</select>
<select id="getTbProjectByProName" resultType="com.bonus.digitalSignage.basic.vo.TbProjectVo">
select tp.id as id,tp.pro_name as proName,tp.voltage_level as voltageLevel,tp.line_length as lineLength,
tp.plan_start_time as planStartTime,tp.plan_end_time as planEndTime,tp.lon as lon,tp.lat as lat,
tp.address as address,tp.pro_status as pro_status
tp.address as address,tp.pro_status as pro_status,tp.project_overview as projectOverview
from tb_project tp where depart_id = #{departId} and pro_name = #{proName} and is_active ='1'
</select>
<select id="getDataAuthByDeptId" resultType="java.lang.Long">