找人,找意向区域
This commit is contained in:
@@ -24,6 +24,9 @@ public class RegionAreaConfigDO implements Serializable {
|
||||
@ApiModelProperty("区域ID 战区id")
|
||||
private Long regionId;
|
||||
|
||||
@ApiModelProperty("区域路径")
|
||||
private String regionPath;
|
||||
|
||||
@ApiModelProperty("意向开店区域 省市code")
|
||||
private Long wantShopAreaId;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user