fix
This commit is contained in:
@@ -12,9 +12,10 @@
|
|||||||
<result column="openid" jdbcType="VARCHAR" property="openid" />
|
<result column="openid" jdbcType="VARCHAR" property="openid" />
|
||||||
<result column="downstream_system_salting" jdbcType="VARCHAR" property="downstreamSystemSalting" />
|
<result column="downstream_system_salting" jdbcType="VARCHAR" property="downstreamSystemSalting" />
|
||||||
<result column="downstream_system_password" jdbcType="VARCHAR" property="downstreamSystemPassword" />
|
<result column="downstream_system_password" jdbcType="VARCHAR" property="downstreamSystemPassword" />
|
||||||
|
<result column="downstream_system_secondary_password" jdbcType="VARCHAR" property="downstreamSystemSecondaryPassword" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id, partner_id, mobile, create_time, update_time, user_channel_id, crm_create_time, openid, downstream_system_salting, downstream_system_password
|
id, partner_id, mobile, create_time, update_time, user_channel_id, crm_create_time, openid, downstream_system_salting, downstream_system_password,downstream_system_secondary_password
|
||||||
</sql>
|
</sql>
|
||||||
<select id="selectByPartnerId" resultMap="BaseResultMap" >
|
<select id="selectByPartnerId" resultMap="BaseResultMap" >
|
||||||
select
|
select
|
||||||
|
|||||||
@@ -49,6 +49,8 @@ import static com.cool.store.enums.point.ShopSubStageStatusEnum.*;
|
|||||||
@Service
|
@Service
|
||||||
public class PlatformBuildServiceImpl implements PlatformBuildService {
|
public class PlatformBuildServiceImpl implements PlatformBuildService {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private AcceptanceInfoDAO acceptanceInfoDAO;
|
||||||
@Resource
|
@Resource
|
||||||
private SysRoleService sysRoleService;
|
private SysRoleService sysRoleService;
|
||||||
@Resource
|
@Resource
|
||||||
@@ -360,6 +362,8 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
|
|||||||
}
|
}
|
||||||
if (Objects.isNull(platformBuildDO)) {
|
if (Objects.isNull(platformBuildDO)) {
|
||||||
BeanUtils.copyProperties(informationDO, platformBuildResponse);
|
BeanUtils.copyProperties(informationDO, platformBuildResponse);
|
||||||
|
AcceptanceInfoDO acceptanceInfoDO = acceptanceInfoDAO.selectByShopId(shopId);
|
||||||
|
platformBuildResponse.setStorePositioningUrl(acceptanceInfoDO.getShopLocationScreenshots());
|
||||||
return platformBuildResponse;
|
return platformBuildResponse;
|
||||||
}
|
}
|
||||||
BeanUtils.copyProperties(platformBuildDO, platformBuildResponse);
|
BeanUtils.copyProperties(platformBuildDO, platformBuildResponse);
|
||||||
|
|||||||
Reference in New Issue
Block a user