师傅服务区域和师傅技能表
This commit is contained in:
parent
604e7bc703
commit
763b4d9202
|
|
@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue