|
|
@@ -0,0 +1,36 @@ |
|
|
|
package com.ningdatech.pmapi.expert.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
/** |
|
|
|
* <p> |
|
|
|
* |
|
|
|
* </p> |
|
|
|
* |
|
|
|
* @author Liuxinxin |
|
|
|
* @since 2023-02-22 |
|
|
|
*/ |
|
|
|
@TableName("expert_intention_work_region") |
|
|
|
@Data |
|
|
|
@ApiModel(value = "ExpertIntentionWorkRegion对象", description = "") |
|
|
|
public class ExpertIntentionWorkRegion implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
private Long id; |
|
|
|
|
|
|
|
private LocalDateTime createOn; |
|
|
|
|
|
|
|
private LocalDateTime updateOn; |
|
|
|
|
|
|
|
private Long userId; |
|
|
|
|
|
|
|
private String regionCode; |
|
|
|
|
|
|
|
private Integer regionLevel; |
|
|
|
} |