人员先写死

This commit is contained in:
zhangchenbiao
2024-03-28 14:57:25 +08:00
parent 28a8d4c4d6
commit 070fce75ee
4 changed files with 11 additions and 10 deletions

View File

@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
/** /**
* @author zhangchenbiao * @author zhangchenbiao
* @FileName: CompetitorBusinessCapacityEnum * @FileName: CompeteBusinessCapacityEnum
* @Description:竞争对手经营能力 * @Description:竞争对手经营能力
* @date 2024-03-26 16:08 * @date 2024-03-26 16:08
*/ */
public enum CompetitorBusinessCapacityEnum { public enum CompeteBusinessCapacityEnum {
// 1:非常好 2: 3:一般 4: // 1:非常好 2: 3:一般 4:
COMPETITOR_BUSINESS_CAPACITY_1(1, "非常好", 0), COMPETITOR_BUSINESS_CAPACITY_1(1, "非常好", 0),
@@ -21,7 +21,7 @@ public enum CompetitorBusinessCapacityEnum {
private Integer score; private Integer score;
CompetitorBusinessCapacityEnum(Integer code, String desc, Integer score) { CompeteBusinessCapacityEnum(Integer code, String desc, Integer score) {
this.code = code; this.code = code;
this.desc = desc; this.desc = desc;
this.score = score; this.score = score;

View File

@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
/** /**
* @author zhangchenbiao * @author zhangchenbiao
* @FileName: CompetitorTypeEnum * @FileName: CompeteTypeEnum
* @Description:竞争对手性质 * @Description:竞争对手性质
* @date 2024-03-26 16:08 * @date 2024-03-26 16:08
*/ */
public enum CompetitorTypeEnum { public enum CompeteTypeEnum {
// 1:连锁店 2:强势单店 3:经营散户 4:小型摊贩 // 1:连锁店 2:强势单店 3:经营散户 4:小型摊贩
WANT_SHOP_SIZE_1(1, "连锁店", 1), WANT_SHOP_SIZE_1(1, "连锁店", 1),
@@ -21,7 +21,7 @@ public enum CompetitorTypeEnum {
private Integer score; private Integer score;
CompetitorTypeEnum(Integer code, String desc, Integer score) { CompeteTypeEnum(Integer code, String desc, Integer score) {
this.code = code; this.code = code;
this.desc = desc; this.desc = desc;
this.score = score; this.score = score;

View File

@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
/** /**
* @author zhangchenbiao * @author zhangchenbiao
* @FileName: NearCompetitorEnum * @FileName: NearCompeteEnum
* @Description:周边(100m内)餐饮店 * @Description:周边(100m内)餐饮店
* @date 2024-03-26 16:08 * @date 2024-03-26 16:08
*/ */
public enum NearCompetitorEnum { public enum NearCompeteEnum {
//1.品牌水果店2家以上 2.品牌水果店1家及以上 3.夫妻水果店1家及以上 4.无水果店 //1.品牌水果店2家以上 2.品牌水果店1家及以上 3.夫妻水果店1家及以上 4.无水果店
NEAR_COMPETITOR_1(1, "品牌水果店2家以上", 1), NEAR_COMPETITOR_1(1, "品牌水果店2家以上", 1),
@@ -21,7 +21,7 @@ public enum NearCompetitorEnum {
private Integer score; private Integer score;
NearCompetitorEnum(Integer code, String desc, Integer score) { NearCompeteEnum(Integer code, String desc, Integer score) {
this.code = code; this.code = code;
this.desc = desc; this.desc = desc;
this.score = score; this.score = score;

View File

@@ -30,6 +30,7 @@ import java.io.UnsupportedEncodingException;
import java.net.URLEncoder; import java.net.URLEncoder;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.text.MessageFormat; import java.text.MessageFormat;
import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@@ -69,7 +70,7 @@ public class CommonService {
*/ */
public String getUserIdByAreaAndUserRole(Long areaId, UserRoleEnum userRole){ public String getUserIdByAreaAndUserRole(Long areaId, UserRoleEnum userRole){
//随机一个 //随机一个
return enterpriseUserDAO.getUserInfoByUserIds(null).stream().findAny().get().getUserId(); return enterpriseUserDAO.getUserInfoByUserIds(Arrays.asList("02012524481349484395", "123836131931284423")).stream().findAny().get().getUserId();
} }
public void sendMessage(List<String> userIds, Long lineId, MessageEnum message, String... param){ public void sendMessage(List<String> userIds, Long lineId, MessageEnum message, String... param){