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; + + +}