Browse Source

删除多余提交

jobob 8 years ago
parent
commit
6cc82fb62a

+ 0 - 65
mybatis-plus/D:/com/baomidou/test/entity/TPhone.java

@@ -1,65 +0,0 @@
-package com.baomidou.test.entity;
-
-import com.baomidou.mybatisplus.activerecord.Model;
-import com.baomidou.mybatisplus.annotations.TableId;
-import com.baomidou.mybatisplus.annotations.TableField;
-import com.baomidou.mybatisplus.annotations.TableName;
-import java.io.Serializable;
-/**
- * <p>
- * 
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@TableName("t_phone")
-public class TPhone extends Model<TPhone> {
-
-    private static final long serialVersionUID = 1L;
-
-	/**
-	 * 
-	 */
-	@TableId
-	private Long id;
-	/**
-	 * 
-	 */
-	private String username;
-	/**
-	 * 
-	 */
-	private Integer age;
-
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public String getUsername() {
-		return username;
-	}
-
-	public void setUsername(String username) {
-		this.username = username;
-	}
-
-	public Integer getAge() {
-		return age;
-	}
-
-	public void setAge(Integer age) {
-		this.age = age;
-	}
-
-	@Override
-	protected Serializable pkVal() {
-		return this.id;
-	}
-
-}

+ 0 - 54
mybatis-plus/D:/com/baomidou/test/entity/TProductOrder.java

@@ -1,54 +0,0 @@
-package com.baomidou.test.entity;
-
-import com.baomidou.mybatisplus.activerecord.Model;
-import com.baomidou.mybatisplus.annotations.TableId;
-import com.baomidou.mybatisplus.annotations.TableField;
-import com.baomidou.mybatisplus.annotations.TableName;
-import java.io.Serializable;
-/**
- * <p>
- * 
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@TableName("t_product_order")
-public class TProductOrder extends Model<TProductOrder> {
-
-    private static final long serialVersionUID = 1L;
-
-	/**
-	 * 
-	 */
-	@TableField(value="receiver_mobile")
-	private String receiverMobile;
-	/**
-	 * 
-	 */
-	@TableField(value="bank_Card_Number")
-	private String bankCardNumber;
-
-
-	public String getReceiverMobile() {
-		return receiverMobile;
-	}
-
-	public void setReceiverMobile(String receiverMobile) {
-		this.receiverMobile = receiverMobile;
-	}
-
-	public String getBankCardNumber() {
-		return bankCardNumber;
-	}
-
-	public void setBankCardNumber(String bankCardNumber) {
-		this.bankCardNumber = bankCardNumber;
-	}
-
-	@Override
-	protected Serializable pkVal() {
-		return this.id;
-	}
-
-}

+ 0 - 65
mybatis-plus/D:/com/baomidou/test/entity/TUser.java

@@ -1,65 +0,0 @@
-package com.baomidou.test.entity;
-
-import com.baomidou.mybatisplus.activerecord.Model;
-import com.baomidou.mybatisplus.annotations.TableId;
-import com.baomidou.mybatisplus.annotations.TableField;
-import com.baomidou.mybatisplus.annotations.TableName;
-import java.io.Serializable;
-/**
- * <p>
- * 
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@TableName("t_user")
-public class TUser extends Model<TUser> {
-
-    private static final long serialVersionUID = 1L;
-
-	/**
-	 * 
-	 */
-	@TableId
-	private Long userid;
-	/**
-	 * 
-	 */
-	private String username;
-	/**
-	 * 
-	 */
-	private Integer age;
-
-
-	public Long getUserid() {
-		return userid;
-	}
-
-	public void setUserid(Long userid) {
-		this.userid = userid;
-	}
-
-	public String getUsername() {
-		return username;
-	}
-
-	public void setUsername(String username) {
-		this.username = username;
-	}
-
-	public Integer getAge() {
-		return age;
-	}
-
-	public void setAge(Integer age) {
-		this.age = age;
-	}
-
-	@Override
-	protected Serializable pkVal() {
-		return this.userid;
-	}
-
-}

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/mapper/TPhoneMapper.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.mapper;
-
-import com.baomidou.test.entity.TPhone;
-import com.baomidou.mybatisplus.mapper.BaseMapper;
-
-/**
- * <p>
- * Mapper接口
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface TPhoneMapper extends BaseMapper<TPhone> {
-
-}

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/mapper/TProductOrderMapper.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.mapper;
-
-import com.baomidou.test.entity.TProductOrder;
-import com.baomidou.mybatisplus.mapper.BaseMapper;
-
-/**
- * <p>
- * Mapper接口
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface TProductOrderMapper extends BaseMapper<TProductOrder> {
-
-}

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/mapper/TUserMapper.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.mapper;
-
-import com.baomidou.test.entity.TUser;
-import com.baomidou.mybatisplus.mapper.BaseMapper;
-
-/**
- * <p>
- * Mapper接口
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface TUserMapper extends BaseMapper<TUser> {
-
-}

+ 0 - 12
mybatis-plus/D:/com/baomidou/test/mapper/xml/TPhoneMapper.xml

@@ -1,12 +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.test.mapper.TPhoneMapper">
-
-	<!-- 通用查询映射结果 -->
-	<resultMap id="BaseResultMap" type="com.baomidou.test.entity.TPhone">
-		<id column="id" property="id" />
-		<result column="userName" property="username" />
-		<result column="age" property="age" />
-	</resultMap>
-
-</mapper>

+ 0 - 11
mybatis-plus/D:/com/baomidou/test/mapper/xml/TProductOrderMapper.xml

@@ -1,11 +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.test.mapper.TProductOrderMapper">
-
-	<!-- 通用查询映射结果 -->
-	<resultMap id="BaseResultMap" type="com.baomidou.test.entity.TProductOrder">
-		<result column="receiver_mobile" property="receiverMobile" />
-		<result column="bank_Card_Number" property="bankCardNumber" />
-	</resultMap>
-
-</mapper>

+ 0 - 12
mybatis-plus/D:/com/baomidou/test/mapper/xml/TUserMapper.xml

@@ -1,12 +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.test.mapper.TUserMapper">
-
-	<!-- 通用查询映射结果 -->
-	<resultMap id="BaseResultMap" type="com.baomidou.test.entity.TUser">
-		<id column="userId" property="userid" />
-		<result column="userName" property="username" />
-		<result column="age" property="age" />
-	</resultMap>
-
-</mapper>

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/service/ITPhoneService.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.service;
-
-import com.baomidou.test.entity.TPhone;
-import com.baomidou.mybatisplus.service.IService;
-
-/**
- * <p>
- *   服务类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface ITPhoneService extends IService<TPhone> {
-	
-}

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/service/ITProductOrderService.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.service;
-
-import com.baomidou.test.entity.TProductOrder;
-import com.baomidou.mybatisplus.service.IService;
-
-/**
- * <p>
- *   服务类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface ITProductOrderService extends IService<TProductOrder> {
-	
-}

+ 0 - 16
mybatis-plus/D:/com/baomidou/test/service/ITUserService.java

@@ -1,16 +0,0 @@
-package com.baomidou.test.service;
-
-import com.baomidou.test.entity.TUser;
-import com.baomidou.mybatisplus.service.IService;
-
-/**
- * <p>
- *   服务类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-public interface ITUserService extends IService<TUser> {
-	
-}

+ 0 - 20
mybatis-plus/D:/com/baomidou/test/service/impl/TPhoneServiceImpl.java

@@ -1,20 +0,0 @@
-package com.baomidou.test.service.impl;
-
-import com.baomidou.test.entity.TPhone;
-import com.baomidou.test.mapper.TPhoneMapper;
-import com.baomidou.test.service.ITPhoneService;
-import com.baomidou.mybatisplus.service.impl.ServiceImpl;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- *   服务实现类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Service
-public class TPhoneServiceImpl extends ServiceImpl<TPhoneMapper, TPhone> implements ITPhoneService {
-	
-}

+ 0 - 20
mybatis-plus/D:/com/baomidou/test/service/impl/TProductOrderServiceImpl.java

@@ -1,20 +0,0 @@
-package com.baomidou.test.service.impl;
-
-import com.baomidou.test.entity.TProductOrder;
-import com.baomidou.test.mapper.TProductOrderMapper;
-import com.baomidou.test.service.ITProductOrderService;
-import com.baomidou.mybatisplus.service.impl.ServiceImpl;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- *   服务实现类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Service
-public class TProductOrderServiceImpl extends ServiceImpl<TProductOrderMapper, TProductOrder> implements ITProductOrderService {
-	
-}

+ 0 - 20
mybatis-plus/D:/com/baomidou/test/service/impl/TUserServiceImpl.java

@@ -1,20 +0,0 @@
-package com.baomidou.test.service.impl;
-
-import com.baomidou.test.entity.TUser;
-import com.baomidou.test.mapper.TUserMapper;
-import com.baomidou.test.service.ITUserService;
-import com.baomidou.mybatisplus.service.impl.ServiceImpl;
-import org.springframework.stereotype.Service;
-
-/**
- * <p>
- *   服务实现类
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Service
-public class TUserServiceImpl extends ServiceImpl<TUserMapper, TUser> implements ITUserService {
-	
-}

+ 0 - 18
mybatis-plus/D:/com/baomidou/test/web/TPhoneController.java

@@ -1,18 +0,0 @@
-package com.baomidou.test.web;
-
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-
-/**
- * <p>
- *   前端控制器
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Controller
-@RequestMapping("/test/tPhone")
-public class TPhoneController {
-	
-}

+ 0 - 18
mybatis-plus/D:/com/baomidou/test/web/TProductOrderController.java

@@ -1,18 +0,0 @@
-package com.baomidou.test.web;
-
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-
-/**
- * <p>
- *   前端控制器
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Controller
-@RequestMapping("/test/tProductOrder")
-public class TProductOrderController {
-	
-}

+ 0 - 18
mybatis-plus/D:/com/baomidou/test/web/TUserController.java

@@ -1,18 +0,0 @@
-package com.baomidou.test.web;
-
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-
-/**
- * <p>
- *   前端控制器
- * </p>
- *
- * @author Yanghu
- * @since 2017-01-11
- */
-@Controller
-@RequestMapping("/test/tUser")
-public class TUserController {
-	
-}