linweifeng 5 éve
szülő
commit
2d18bc68e8

+ 0 - 21
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/controller/H2userController.java

@@ -1,21 +0,0 @@
-package com.baomidou.mp.h2.controller;
-
-
-import org.springframework.web.bind.annotation.RequestMapping;
-
-import org.springframework.stereotype.Controller;
-
-/**
- * <p>
- *  前端控制器
- * </p>
- *
- * @author K神带你飞
- * @since 2019-09-25
- */
-@Controller
-@RequestMapping("/h2user")
-public class H2userController {
-
-}
-

+ 0 - 156
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/entity/H2user.java

@@ -1,156 +0,0 @@
-package com.baomidou.mp.h2.entity;
-
-import java.math.BigDecimal;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import java.time.LocalDateTime;
-import com.baomidou.mybatisplus.annotation.TableField;
-import java.io.Serializable;
-
-/**
- * <p>
- * 
- * </p>
- *
- * @author K神带你飞
- * @since 2019-09-25
- */
-@TableName("h2user")
-public class H2user implements Serializable {
-
-    private static final long serialVersionUID=1L;
-
-    /**
-     * PK
-     */
-      @TableId(value = "test_id", type = IdType.AUTO)
-    private Long testId;
-
-    /**
-     * USERNAME
-     */
-    @TableField("name")
-    private String name;
-
-    @TableField("age")
-    private Integer age;
-
-    @TableField("test_type")
-    private Integer testType;
-
-    @TableField("test_date")
-    private LocalDateTime testDate;
-
-    @TableField("price")
-    private BigDecimal price;
-
-    @TableField("desc")
-    private String desc;
-
-    @TableField("version")
-    private Integer version;
-
-    @TableField("last_updated_dt")
-    private LocalDateTime lastUpdatedDt;
-
-    @TableField("deleted")
-    private Integer deleted;
-
-
-    public Long getTestId() {
-        return testId;
-    }
-
-    public void setTestId(Long testId) {
-        this.testId = testId;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    public Integer getAge() {
-        return age;
-    }
-
-    public void setAge(Integer age) {
-        this.age = age;
-    }
-
-    public Integer getTestType() {
-        return testType;
-    }
-
-    public void setTestType(Integer testType) {
-        this.testType = testType;
-    }
-
-    public LocalDateTime getTestDate() {
-        return testDate;
-    }
-
-    public void setTestDate(LocalDateTime testDate) {
-        this.testDate = testDate;
-    }
-
-    public BigDecimal getPrice() {
-        return price;
-    }
-
-    public void setPrice(BigDecimal price) {
-        this.price = price;
-    }
-
-    public String getDesc() {
-        return desc;
-    }
-
-    public void setDesc(String desc) {
-        this.desc = desc;
-    }
-
-    public Integer getVersion() {
-        return version;
-    }
-
-    public void setVersion(Integer version) {
-        this.version = version;
-    }
-
-    public LocalDateTime getLastUpdatedDt() {
-        return lastUpdatedDt;
-    }
-
-    public void setLastUpdatedDt(LocalDateTime lastUpdatedDt) {
-        this.lastUpdatedDt = lastUpdatedDt;
-    }
-
-    public Integer getDeleted() {
-        return deleted;
-    }
-
-    public void setDeleted(Integer deleted) {
-        this.deleted = deleted;
-    }
-
-    @Override
-    public String toString() {
-        return "H2user{" +
-        "testId=" + testId +
-        ", name=" + name +
-        ", age=" + age +
-        ", testType=" + testType +
-        ", testDate=" + testDate +
-        ", price=" + price +
-        ", desc=" + desc +
-        ", version=" + version +
-        ", lastUpdatedDt=" + lastUpdatedDt +
-        ", deleted=" + deleted +
-        "}";
-    }
-}

+ 0 - 16
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/mapper/H2userMapper.java

@@ -1,16 +0,0 @@
-package com.baomidou.mp.h2.mapper;
-
-import com.baomidou.mp.h2.entity.H2user;
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-
-/**
- * <p>
- *  Mapper 接口
- * </p>
- *
- * @author K神带你飞
- * @since 2019-09-25
- */
-public interface H2userMapper extends BaseMapper<H2user> {
-
-}

+ 0 - 5
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/mapper/xml/H2userMapper.xml

@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="com.baomidou.mp.h2.mapper.H2userMapper">
-
-</mapper>

+ 0 - 16
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/service/H2userService.java

@@ -1,16 +0,0 @@
-package com.baomidou.mp.h2.service;
-
-import com.baomidou.mp.h2.entity.H2user;
-import com.baomidou.mybatisplus.extension.service.IService;
-
-/**
- * <p>
- *  服务类
- * </p>
- *
- * @author K神带你飞
- * @since 2019-09-25
- */
-public interface H2userService extends IService<H2user> {
-
-}

+ 0 - 20
mybatis-plus/d:\\codeGen/com/baomidou/mp/h2/service/impl/H2userServiceImpl.java

@@ -1,20 +0,0 @@
-package com.baomidou.mp.h2.service.impl;
-
-import com.baomidou.mp.h2.entity.H2user;
-import com.baomidou.mp.h2.mapper.H2userMapper;
-import com.baomidou.mp.h2.service.H2userService;
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- *  服务实现类
- * </p>
- *
- * @author K神带你飞
- * @since 2019-09-25
- */
-@Service
-public class H2userServiceImpl extends ServiceImpl<H2userMapper, H2user> implements H2userService {
-
-}