diff --git a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsBmdPO.java b/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsBmdPO.java deleted file mode 100644 index 6c3d4641b..000000000 --- a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsBmdPO.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.njcn.algorithm.pojo.po; - -import com.baomidou.mybatisplus.annotation.TableName; -import com.njcn.db.bo.BaseEntity; -import java.io.Serializable; - -import lombok.Data; -import lombok.Getter; -import lombok.Setter; - -/** - *

- * - *

- * - * @author xuyang - * @since 2023-05-11 - */ -@Data -@TableName("cs_bmd") -public class CsBmdPO { - - private static final long serialVersionUID = 1L; - - private String id; - - private String name; - - private String anotherName; - - private Integer idx; - - private String type; - - private String unit; - - private String phase; - - private String classId; - - private String statMethod; - - private String tranRule; - -} diff --git a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsEpdPqdPO.java b/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsEpdPqdPO.java deleted file mode 100644 index 238cf3b9f..000000000 --- a/pqs-algorithm/algorithm-api/src/main/java/com/njcn/algorithm/pojo/po/CsEpdPqdPO.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.njcn.algorithm.pojo.po; - -import com.baomidou.mybatisplus.annotation.TableName; -import com.njcn.db.bo.BaseEntity; -import java.io.Serializable; - -import lombok.Data; -import lombok.Getter; -import lombok.Setter; - -/** - *

- * - *

- * - * @author xuyang - * @since 2023-05-11 - */ -@Data -@TableName("cs_epd_pqd") -public class CsEpdPqdPO { - - private static final long serialVersionUID = 1L; - - private String id; - - private String name; - - private String anotherName; - - private Integer idx; - - private String type; - - private String phase; - - private String unit; - - private Integer harmStart; - - private Integer harmEnd; - - private String classId; - - private String statMethod; - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsBmdMapper.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsBmdMapper.java deleted file mode 100644 index 921d03808..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsBmdMapper.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.njcn.algorithm.mapper; - -import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.njcn.algorithm.pojo.po.CsBmdPO; - -/** - *

- * Mapper 接口 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -public interface CsBmdMapper extends BaseMapper { - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsEpdPqdMapper.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsEpdPqdMapper.java deleted file mode 100644 index d07fb7475..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/mapper/CsEpdPqdMapper.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.njcn.algorithm.mapper; - -import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.njcn.algorithm.pojo.po.CsEpdPqdPO; - -/** - *

- * Mapper 接口 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -public interface CsEpdPqdMapper extends BaseMapper { - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsBmdService.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsBmdService.java deleted file mode 100644 index 3f6dc557a..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsBmdService.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.njcn.algorithm.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.njcn.algorithm.pojo.po.CsBmdPO; - -/** - *

- * 服务类 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -public interface ICsBmdService extends IService { - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsEpdPqdService.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsEpdPqdService.java deleted file mode 100644 index 501c3e1ff..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/ICsEpdPqdService.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.njcn.algorithm.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.njcn.algorithm.pojo.po.CsEpdPqdPO; - -/** - *

- * 服务类 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -public interface ICsEpdPqdService extends IService { - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsBmdServiceImpl.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsBmdServiceImpl.java deleted file mode 100644 index b54d8eaec..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsBmdServiceImpl.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.njcn.algorithm.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.njcn.algorithm.mapper.CsBmdMapper; -import com.njcn.algorithm.pojo.po.CsBmdPO; -import com.njcn.algorithm.service.ICsBmdService; -import org.springframework.stereotype.Service; - -/** - *

- * 服务实现类 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -@Service -public class CsBmdServiceImpl extends ServiceImpl implements ICsBmdService { - -} diff --git a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsEpdPqdServiceImpl.java b/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsEpdPqdServiceImpl.java deleted file mode 100644 index dd5d81395..000000000 --- a/pqs-algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/service/impl/CsEpdPqdServiceImpl.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.njcn.algorithm.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.njcn.algorithm.mapper.CsEpdPqdMapper; -import com.njcn.algorithm.pojo.po.CsEpdPqdPO; -import com.njcn.algorithm.service.ICsEpdPqdService; -import org.springframework.stereotype.Service; - -/** - *

- * 服务实现类 - *

- * - * @author xuyang - * @since 2023-05-11 - */ -@Service -public class CsEpdPqdServiceImpl extends ServiceImpl implements ICsEpdPqdService { - -}