危化品全生命周期管理后端
“djh”
2025-04-21 437f8e2b89a18363a1073fdbb3ab99bcd840a757
hazmat-system/src/main/resources/mapper/system/SysConfigMapper.xml
@@ -7,6 +7,8 @@
        <result property="logoPath"    column="logo_path"    />
        <result property="useProd"     column="use_prod"     />
        <result property="companyId"   column="company_id"   />
        <result property="longitude"  column="longitude"/>
        <result property="latitude"  column="latitude"/>
        <result property="createBy"      column="create_by"      />
        <result property="createTime"    column="create_time"    />
        <result property="updateBy"      column="update_by"      />
@@ -15,7 +17,7 @@
    </resultMap>
    <sql id="selectConfigVo">
        select a.id, a.logo_path, a.use_prod, a.company_id, a.create_by, a.create_time, a.update_by, a.update_time,b.name as company_name
        select a.id, a.logo_path, a.use_prod, a.company_id,a.longitude,a.latitude, a.create_by, a.create_time, a.update_by, a.update_time,b.name as company_name
        from sys_config a
        left join sys_company b on b.id=a.company_id
    </sql>