Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
bbf86ea7
Commit
bbf86ea7
authored
Feb 23, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除代码
parent
2eb813d0
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
135 deletions
+0
-135
TestMapper.java
.../com/gic/haoban/manage/service/dao/mapper/TestMapper.java
+0
-41
Test.java
.../main/java/com/gic/haoban/manage/service/entity/Test.java
+0
-62
TestService.java
...va/com/gic/haoban/manage/service/service/TestService.java
+0
-10
TestApiServiceImpl.java
...aoban/manage/service/service/impl/TestApiServiceImpl.java
+0
-22
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/dao/mapper/TestMapper.java
deleted
100644 → 0
View file @
2eb813d0
package
com
.
gic
.
haoban
.
manage
.
service
.
dao
.
mapper
;
import
com.gic.haoban.manage.service.entity.Test
;
import
org.apache.ibatis.annotations.Mapper
;
import
java.util.List
;
@Mapper
public
interface
TestMapper
{
/**
*/
int
deleteByPrimaryKey
(
String
id
);
/**
*/
int
insert
(
Test
record
);
/**
*/
int
insertSelective
(
Test
record
);
/**
*/
Test
selectByPrimaryKey
(
String
id
);
/**
*/
int
updateByPrimaryKeySelective
(
Test
record
);
/**
*/
int
updateByPrimaryKey
(
Test
record
);
/**
* 查询
*
* @return
*/
List
<
Test
>
queryList
();
}
\ No newline at end of file
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/entity/Test.java
deleted
100644 → 0
View file @
2eb813d0
package
com
.
gic
.
haoban
.
manage
.
service
.
entity
;
import
java.io.Serializable
;
/**
* Created By MBG-GUI-EXTENSION https://github.com/spawpaw/mybatis-generator-gui-extension
* Description:
*
* @author fdh
*/
public
class
Test
implements
Serializable
{
/**
*
*/
private
String
id
;
/**
*
*/
private
String
name
;
/**
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* This method returns the value of the database column test.id
*
* @return the value of test.id
*/
public
String
getId
()
{
return
id
;
}
/**
* This method sets the value of the database column test.id
*
* @param id the value for test.id
*/
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
/**
* This method returns the value of the database column test.name
*
* @return the value of test.name
*/
public
String
getName
()
{
return
name
;
}
/**
* This method sets the value of the database column test.name
*
* @param name the value for test.name
*/
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
}
\ No newline at end of file
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/TestService.java
deleted
100644 → 0
View file @
2eb813d0
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
import
com.gic.haoban.manage.service.entity.Test
;
/**
* Created by tgs on 2020/2/9.
*/
public
interface
TestService
{
public
void
save
(
Test
test
);
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/TestApiServiceImpl.java
deleted
100644 → 0
View file @
2eb813d0
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
impl
;
import
com.gic.haoban.manage.service.dao.mapper.TestMapper
;
import
com.gic.haoban.manage.service.entity.Test
;
import
com.gic.haoban.manage.service.service.TestService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
/**
* Created by tgs on 2020/2/9.
*/
@Service
public
class
TestApiServiceImpl
implements
TestService
{
@Autowired
private
TestMapper
testMapper
;
@Override
public
void
save
(
Test
test
)
{
testMapper
.
insert
(
test
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment