人员先写死
This commit is contained in:
@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: CompetitorBusinessCapacityEnum
|
||||
* @FileName: CompeteBusinessCapacityEnum
|
||||
* @Description:竞争对手经营能力
|
||||
* @date 2024-03-26 16:08
|
||||
*/
|
||||
public enum CompetitorBusinessCapacityEnum {
|
||||
public enum CompeteBusinessCapacityEnum {
|
||||
|
||||
// 1:非常好 2:好 3:一般 4:差
|
||||
COMPETITOR_BUSINESS_CAPACITY_1(1, "非常好", 0),
|
||||
@@ -21,7 +21,7 @@ public enum CompetitorBusinessCapacityEnum {
|
||||
|
||||
private Integer score;
|
||||
|
||||
CompetitorBusinessCapacityEnum(Integer code, String desc, Integer score) {
|
||||
CompeteBusinessCapacityEnum(Integer code, String desc, Integer score) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
this.score = score;
|
||||
@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: CompetitorTypeEnum
|
||||
* @FileName: CompeteTypeEnum
|
||||
* @Description:竞争对手性质
|
||||
* @date 2024-03-26 16:08
|
||||
*/
|
||||
public enum CompetitorTypeEnum {
|
||||
public enum CompeteTypeEnum {
|
||||
|
||||
// 1:连锁店 2:强势单店 3:经营散户 4:小型摊贩
|
||||
WANT_SHOP_SIZE_1(1, "连锁店", 1),
|
||||
@@ -21,7 +21,7 @@ public enum CompetitorTypeEnum {
|
||||
|
||||
private Integer score;
|
||||
|
||||
CompetitorTypeEnum(Integer code, String desc, Integer score) {
|
||||
CompeteTypeEnum(Integer code, String desc, Integer score) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
this.score = score;
|
||||
@@ -2,11 +2,11 @@ package com.cool.store.enums.point;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: NearCompetitorEnum
|
||||
* @FileName: NearCompeteEnum
|
||||
* @Description:周边(100m内)餐饮店
|
||||
* @date 2024-03-26 16:08
|
||||
*/
|
||||
public enum NearCompetitorEnum {
|
||||
public enum NearCompeteEnum {
|
||||
|
||||
//1.品牌水果店2家以上 2.品牌水果店1家及以上 3.夫妻水果店1家及以上 4.无水果店
|
||||
NEAR_COMPETITOR_1(1, "品牌水果店2家以上", 1),
|
||||
@@ -21,7 +21,7 @@ public enum NearCompetitorEnum {
|
||||
|
||||
private Integer score;
|
||||
|
||||
NearCompetitorEnum(Integer code, String desc, Integer score) {
|
||||
NearCompeteEnum(Integer code, String desc, Integer score) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
this.score = score;
|
||||
Reference in New Issue
Block a user