| | |
| | | <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" /> |
| | |
| | | </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> |