This commit is contained in:
linfso 2024-04-30 00:57:20 +08:00
parent 114a94b37b
commit b2391be8ae
2 changed files with 7 additions and 5 deletions

View File

@ -54,7 +54,7 @@ public class EmisStaffController extends BaseController
* 获取取件员列表
*/
// @PreAuthorize("@ss.hasPermi('system:user:list')")
@JacksonFilter(include= {"empCode","empName","ownerSiteCode"},value= SysUser.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
@JacksonFilter(include= {"empCode","empName","ownerSiteCode","ownerSiteName"},value= SysUser.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
@RequestMapping("/getStaffList")
public TableDataInfo getStaffList(@RequestParam("postCode")String postCode)
{

View File

@ -31,14 +31,16 @@
<association property="lineName" column="line_code" select="selectLineNameByCode"/>
<association property="countryName" column="country" select="selectCountryNameByCode"/>
<association property="provinceName" column="province" select="selectRegionNameByCode"/>
<association property="cityName" column="city" select="selectRegionNameByCode"/>
<association property="countyName" column="county" select="selectRegionNameByCode"/>
<association property="townName" column="town" select="selectRegionNameByCode"/>
<association property="siteName" column="site_code" select="selectSiteNameByCode"/>
<association property="countryAreaName" column="country_area_id" select="selectCountryAreaNameById"/>
</resultMap>
<!-- <association property="provinceName" column="province" select="selectRegionNameByCode"/>-->
<!-- <association property="cityName" column="city" select="selectRegionNameByCode"/>-->
<!-- <association property="countyName" column="county" select="selectRegionNameByCode"/>-->
<!-- <association property="townName" column="town" select="selectRegionNameByCode"/>-->
<sql id="selectEmisDestinationVo">
select id, dest_code, dest_name, dest_name_en, status, line_code, country, site_code, province, city, county, town, is_hinterland, country_area_id, remark, tenant_id, del_flag, create_by, create_site, create_time, update_by, update_site, update_time from emis_destination
</sql>