mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
Merge branch 'dev' of http://192.168.2.2:8099/jsowell/jsowell-charger-web into dev
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package com.jsowell.pile.dto;/**
|
||||
* TODO
|
||||
*
|
||||
* @Date 2023/8/18 9:00
|
||||
* @author Lemon
|
||||
*/public class GenerateOccupyOrderDTO {
|
||||
}
|
||||
@@ -6,6 +6,8 @@ import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 站点管理前台参数
|
||||
*
|
||||
@@ -73,4 +75,9 @@ public class QueryStationDTO extends BaseEntity {
|
||||
* 站点二维码前缀
|
||||
*/
|
||||
private String qrcodePrefix;
|
||||
|
||||
/**
|
||||
* 运营商部门id
|
||||
*/
|
||||
private List<String> merchantDeptId;
|
||||
}
|
||||
|
||||
@@ -96,4 +96,11 @@ public interface PileMerchantInfoMapper {
|
||||
* @return
|
||||
*/
|
||||
String getFirstLevelMerchantIdByAppId(String appId);
|
||||
|
||||
/**
|
||||
* 通过appid查询运营商部门id
|
||||
* @param appId
|
||||
* @return
|
||||
*/
|
||||
List<String> getDeptIdsByAppId(@Param("appId") String appId);
|
||||
}
|
||||
|
||||
@@ -98,4 +98,11 @@ public interface IPileMerchantInfoService {
|
||||
List<PileMerchantInfo> queryFirstLevelMerchant();
|
||||
|
||||
String queryAppIdByMerchantId(String merchantId);
|
||||
|
||||
/**
|
||||
* 通过appid获取运营商部门id
|
||||
* @param appId
|
||||
* @return
|
||||
*/
|
||||
List<String> getDeptIdsByAppId(String appId);
|
||||
}
|
||||
|
||||
@@ -378,5 +378,15 @@ public class PileMerchantInfoServiceImpl implements IPileMerchantInfoService {
|
||||
return appId;
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过appid查询运营商部门id
|
||||
* @param appId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<String> getDeptIdsByAppId(String appId) {
|
||||
return pileMerchantInfoMapper.getDeptIdsByAppId(appId);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user