找人,找意向区域

This commit is contained in:
wangxiaopeng
2024-03-29 09:56:30 +08:00
parent 27302dd373
commit ee4de5f8fe
14 changed files with 781 additions and 2 deletions

View File

@@ -24,6 +24,9 @@ public class RegionAreaConfigDO implements Serializable {
@ApiModelProperty("区域ID 战区id")
private Long regionId;
@ApiModelProperty("区域路径")
private String regionPath;
@ApiModelProperty("意向开店区域 省市code")
private Long wantShopAreaId;

View File

@@ -0,0 +1,38 @@
package com.cool.store.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* describe:人员权限映射表
*
* @author zhouyiping
* @date 2020/10/10
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class UserAuthMappingDO {
private Long id;
private String userId;
private String mappingId;
private String type;
private String source;
private String createId;
private Long createTime;
private String updateId;
private Long updateTime;
public UserAuthMappingDO(String userId, String mappingId, String type, String source, String createId, Long createTime) {
this.userId = userId;
this.mappingId = mappingId;
this.type = type;
this.source = source;
this.createId = createId;
this.createTime = createTime;
}
}