From 763b4d92029627508f695a23d61378c3349689b7 Mon Sep 17 00:00:00 2001 From: clunt Date: Thu, 26 May 2022 10:42:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=88=E5=82=85=E6=9C=8D=E5=8A=A1=E5=8C=BA?= =?UTF-8?q?=E5=9F=9F=E5=92=8C=E5=B8=88=E5=82=85=E6=8A=80=E8=83=BD=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ghy/worker/domain/WorkerArea.java | 30 +++++++++++++++++++ .../com/ghy/worker/domain/WorkerSkill.java | 23 ++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 ghy-worker/src/main/java/com/ghy/worker/domain/WorkerArea.java create mode 100644 ghy-worker/src/main/java/com/ghy/worker/domain/WorkerSkill.java diff --git a/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerArea.java b/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerArea.java new file mode 100644 index 00000000..123596b9 --- /dev/null +++ b/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerArea.java @@ -0,0 +1,30 @@ +package com.ghy.worker.domain; + +import com.ghy.common.annotation.Excel; +import com.ghy.common.core.domain.BaseEntity; +import lombok.Data; + +/** + * @author clunt + * 师傅服务区域 + */ +@Data +public class WorkerArea extends BaseEntity { + + @Excel(name = "师傅服务区域关联id") + private Long workerAreaId; + + @Excel(name = "师傅id", cellType = Excel.ColumnType.NUMERIC) + private Long workerId; + + @Excel(name = "省份区域id", cellType = Excel.ColumnType.NUMERIC) + private Long provinceId; + + @Excel(name = "市区域id", cellType = Excel.ColumnType.NUMERIC) + private Long cityId; + + @Excel(name = "区县区域id", cellType = Excel.ColumnType.NUMERIC) + private Long countryId; + + +} diff --git a/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerSkill.java b/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerSkill.java new file mode 100644 index 00000000..90a66967 --- /dev/null +++ b/ghy-worker/src/main/java/com/ghy/worker/domain/WorkerSkill.java @@ -0,0 +1,23 @@ +package com.ghy.worker.domain; + +import com.ghy.common.annotation.Excel; +import com.ghy.common.core.domain.BaseEntity; +import lombok.Data; + +/** + * 师傅擅长技术 + */ +@Data +public class WorkerSkill extends BaseEntity { + + @Excel(name = "师傅服务技能关联id", cellType = Excel.ColumnType.NUMERIC) + private Long workerSkillId; + + @Excel(name = "师傅id", cellType = Excel.ColumnType.NUMERIC) + private Long workerId; + + @Excel(name = "第三级服务类目id", cellType = Excel.ColumnType.NUMERIC) + private Long deptGoodsCategoryId; + + +}