diff --git a/adc-da-report/src/main/java/com/adc/da/report/dao/mysql/ReportLabelDao.java b/adc-da-report/src/main/java/com/adc/da/report/dao/mysql/ReportLabelDao.java new file mode 100644 index 0000000..59ffc96 --- /dev/null +++ b/adc-da-report/src/main/java/com/adc/da/report/dao/mysql/ReportLabelDao.java @@ -0,0 +1,18 @@ +package com.adc.da.report.dao.mysql; + +import com.adc.da.report.eo.ReportLabelEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** +* @author ThinkBook +* @description 针对表【ts_report_label】的数据库操作Mapper +* @createDate 2023-04-19 11:28:48 +* @Entity com.adc.da.report.eo.ReportLabelEntity +*/ +public interface ReportLabelDao extends BaseMapper { + +} + + + + diff --git a/adc-da-report/src/main/java/com/adc/da/report/eo/ReportLabelEntity.java b/adc-da-report/src/main/java/com/adc/da/report/eo/ReportLabelEntity.java new file mode 100644 index 0000000..5ce751c --- /dev/null +++ b/adc-da-report/src/main/java/com/adc/da/report/eo/ReportLabelEntity.java @@ -0,0 +1,37 @@ +package com.adc.da.report.eo; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import java.io.Serializable; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.experimental.Accessors; + +/** + * @author Caihaohan + * @TableName ts_report_label + */ +@TableName(value ="ts_report_label") +@Data +@NoArgsConstructor +@AllArgsConstructor +@Accessors(chain = true) +public class ReportLabelEntity implements Serializable { + /** + * + */ + @TableId + private String reportId; + + /** + * + */ + private String labelId; + + @TableField(exist = false) + private static final long serialVersionUID = 1L; + +} \ No newline at end of file diff --git a/adc-da-report/src/main/java/com/adc/da/report/service/IReportLabelService.java b/adc-da-report/src/main/java/com/adc/da/report/service/IReportLabelService.java new file mode 100644 index 0000000..fb57539 --- /dev/null +++ b/adc-da-report/src/main/java/com/adc/da/report/service/IReportLabelService.java @@ -0,0 +1,13 @@ +package com.adc.da.report.service; + +import com.adc.da.report.eo.ReportLabelEntity; +import com.baomidou.mybatisplus.extension.service.IService; + +/** +* @author ThinkBook +* @description 针对表【ts_report_label】的数据库操作Service +* @createDate 2023-04-19 11:28:48 +*/ +public interface IReportLabelService extends IService { + +} diff --git a/adc-da-report/src/main/resources/mapper/TreeLabelDao.xml b/adc-da-report/src/main/resources/mapper/TreeLabelDao.xml deleted file mode 100644 index ec9f416..0000000 --- a/adc-da-report/src/main/resources/mapper/TreeLabelDao.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - -