Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sunac_report
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
java-sunac-report
sunac_report
Commits
a2a1de96
Commit
a2a1de96
authored
Aug 23, 2019
by
sunxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增表 实体 dao
parent
46d7cded
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
0 deletions
+82
-0
CtBbtcTypeAreaDao.java
src/main/java/com/ejweb/modules/report/dao/CtBbtcTypeAreaDao.java
+25
-0
CtBbtcTypeArea.java
src/main/java/com/ejweb/modules/report/entity/CtBbtcTypeArea.java
+57
-0
No files found.
src/main/java/com/ejweb/modules/report/dao/CtBbtcTypeAreaDao.java
0 → 100644
View file @
a2a1de96
/**
* Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package
com
.
ejweb
.
modules
.
report
.
dao
;
import
com.ejweb.core.persistence.CrudDao
;
import
com.ejweb.core.persistence.annotation.MyBatisDao
;
import
com.ejweb.modules.report.entity.CtBbtcTypeArea
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
* 区域基础资料DAO接口
* @author haoqm
* @version 2019-07-12
*/
@MyBatisDao
public
interface
CtBbtcTypeAreaDao
extends
CrudDao
<
CtBbtcTypeArea
>
{
public
List
<
CtBbtcTypeArea
>
getByAreaId
(
CtBbtcTypeArea
area
);
}
\ No newline at end of file
src/main/java/com/ejweb/modules/report/entity/CtBbtcTypeArea.java
0 → 100644
View file @
a2a1de96
package
com
.
ejweb
.
modules
.
report
.
entity
;
import
java.io.Serializable
;
public
class
CtBbtcTypeArea
implements
Serializable
{
private
String
id
;
private
String
group
;
private
String
area
;
private
String
parentId
;
private
String
typeName
;
public
String
getTypeName
()
{
return
typeName
;
}
public
void
setTypeName
(
String
typeName
)
{
this
.
typeName
=
typeName
;
}
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getGroup
()
{
return
group
;
}
public
void
setGroup
(
String
group
)
{
this
.
group
=
group
;
}
public
String
getArea
()
{
return
area
;
}
public
void
setArea
(
String
area
)
{
this
.
area
=
area
;
}
public
String
getParentId
()
{
return
parentId
;
}
public
void
setParentId
(
String
parentId
)
{
this
.
parentId
=
parentId
;
}
}
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