Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv-springboot
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bsoft
sv-springboot
Commits
381f7cd4
Commit
381f7cd4
authored
Oct 23, 2019
by
Suvalue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交model和mapper
parent
90b112f1
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
4945 additions
and
0 deletions
+4945
-0
bsoft-api/src/main/java/com/bsoft/api/model/DicDim.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/DicInd.java
+303
-0
bsoft-api/src/main/java/com/bsoft/api/model/DicOrg.java
+402
-0
bsoft-api/src/main/java/com/bsoft/api/model/SerBlock.java
+237
-0
bsoft-api/src/main/java/com/bsoft/api/model/SerPage.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SerPageBlockRs.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SerPageDimRs.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysMenu.java
+270
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysOrg.java
+402
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysProject.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysRole.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysRoleMenuRs.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysUserMenuRs.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysUserOrgRs.java
+204
-0
bsoft-api/src/main/java/com/bsoft/api/model/SysUserRoleRs.java
+204
-0
bsoft-api/src/main/resources/mapper/DicDimMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/DicIndMapper.xml
+84
-0
bsoft-api/src/main/resources/mapper/DicOrgMapper.xml
+92
-0
bsoft-api/src/main/resources/mapper/SerBlockMapper.xml
+78
-0
bsoft-api/src/main/resources/mapper/SerPageBlockRsMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SerPageDimRsMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SerPageMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysMenuMapper.xml
+100
-0
bsoft-api/src/main/resources/mapper/SysOrgMapper.xml
+92
-0
bsoft-api/src/main/resources/mapper/SysProjectMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysRoleMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysRoleMenuRsMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysUserMapper.xml
+100
-0
bsoft-api/src/main/resources/mapper/SysUserMenuRsMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysUserOrgRsMapper.xml
+74
-0
bsoft-api/src/main/resources/mapper/SysUserRoleRsMapper.xml
+79
-0
No files found.
bsoft-api/src/main/java/com/bsoft/api/model/DicDim.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
DicDim
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.DIM_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
dimName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_DIM.DIM_FIELD
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
dimField
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.ID
*
* @return the value of LL.DIC_DIM.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.ID
*
* @param id the value for LL.DIC_DIM.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.CREATE_DATE
*
* @return the value of LL.DIC_DIM.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.CREATE_DATE
*
* @param createDate the value for LL.DIC_DIM.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.CREATE_USERID
*
* @return the value of LL.DIC_DIM.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.CREATE_USERID
*
* @param createUserid the value for LL.DIC_DIM.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.STATE
*
* @return the value of LL.DIC_DIM.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.STATE
*
* @param state the value for LL.DIC_DIM.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.DIM_NAME
*
* @return the value of LL.DIC_DIM.DIM_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getDimName
()
{
return
dimName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.DIM_NAME
*
* @param dimName the value for LL.DIC_DIM.DIM_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setDimName
(
String
dimName
)
{
this
.
dimName
=
dimName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_DIM.DIM_FIELD
*
* @return the value of LL.DIC_DIM.DIM_FIELD
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getDimField
()
{
return
dimField
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_DIM.DIM_FIELD
*
* @param dimField the value for LL.DIC_DIM.DIM_FIELD
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setDimField
(
String
dimField
)
{
this
.
dimField
=
dimField
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/DicInd.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
DicInd
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.IND_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
indCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.IND_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
indName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.COMPUTE_MODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
computeMode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.EXEC_SQL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
execSql
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_IND.DESCRIBE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
describe
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.ID
*
* @return the value of LL.DIC_IND.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.ID
*
* @param id the value for LL.DIC_IND.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.CREATE_DATE
*
* @return the value of LL.DIC_IND.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.CREATE_DATE
*
* @param createDate the value for LL.DIC_IND.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.CREATE_USERID
*
* @return the value of LL.DIC_IND.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.CREATE_USERID
*
* @param createUserid the value for LL.DIC_IND.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.STATE
*
* @return the value of LL.DIC_IND.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.STATE
*
* @param state the value for LL.DIC_IND.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.IND_CODE
*
* @return the value of LL.DIC_IND.IND_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getIndCode
()
{
return
indCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.IND_CODE
*
* @param indCode the value for LL.DIC_IND.IND_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setIndCode
(
String
indCode
)
{
this
.
indCode
=
indCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.IND_NAME
*
* @return the value of LL.DIC_IND.IND_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getIndName
()
{
return
indName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.IND_NAME
*
* @param indName the value for LL.DIC_IND.IND_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setIndName
(
String
indName
)
{
this
.
indName
=
indName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.COMPUTE_MODE
*
* @return the value of LL.DIC_IND.COMPUTE_MODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getComputeMode
()
{
return
computeMode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.COMPUTE_MODE
*
* @param computeMode the value for LL.DIC_IND.COMPUTE_MODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setComputeMode
(
Short
computeMode
)
{
this
.
computeMode
=
computeMode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.EXEC_SQL
*
* @return the value of LL.DIC_IND.EXEC_SQL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getExecSql
()
{
return
execSql
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.EXEC_SQL
*
* @param execSql the value for LL.DIC_IND.EXEC_SQL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setExecSql
(
String
execSql
)
{
this
.
execSql
=
execSql
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_IND.DESCRIBE
*
* @return the value of LL.DIC_IND.DESCRIBE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getDescribe
()
{
return
describe
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_IND.DESCRIBE
*
* @param describe the value for LL.DIC_IND.DESCRIBE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setDescribe
(
String
describe
)
{
this
.
describe
=
describe
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/DicOrg.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
DicOrg
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgNo
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgShortName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgGroup
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgType
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
orgAddress
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.DIC_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
parentId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ID
*
* @return the value of LL.DIC_ORG.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ID
*
* @param id the value for LL.DIC_ORG.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.CREATE_DATE
*
* @return the value of LL.DIC_ORG.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.CREATE_DATE
*
* @param createDate the value for LL.DIC_ORG.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.CREATE_USERID
*
* @return the value of LL.DIC_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.CREATE_USERID
*
* @param createUserid the value for LL.DIC_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.STATE
*
* @return the value of LL.DIC_ORG.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.STATE
*
* @param state the value for LL.DIC_ORG.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_CODE
*
* @return the value of LL.DIC_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgCode
()
{
return
orgCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_CODE
*
* @param orgCode the value for LL.DIC_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgCode
(
String
orgCode
)
{
this
.
orgCode
=
orgCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_NAME
*
* @return the value of LL.DIC_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgName
()
{
return
orgName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_NAME
*
* @param orgName the value for LL.DIC_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgName
(
String
orgName
)
{
this
.
orgName
=
orgName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_NO
*
* @return the value of LL.DIC_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgNo
()
{
return
orgNo
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_NO
*
* @param orgNo the value for LL.DIC_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgNo
(
String
orgNo
)
{
this
.
orgNo
=
orgNo
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_SHORT_NAME
*
* @return the value of LL.DIC_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgShortName
()
{
return
orgShortName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_SHORT_NAME
*
* @param orgShortName the value for LL.DIC_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgShortName
(
String
orgShortName
)
{
this
.
orgShortName
=
orgShortName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_GROUP
*
* @return the value of LL.DIC_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgGroup
()
{
return
orgGroup
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_GROUP
*
* @param orgGroup the value for LL.DIC_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgGroup
(
String
orgGroup
)
{
this
.
orgGroup
=
orgGroup
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_TYPE
*
* @return the value of LL.DIC_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgType
()
{
return
orgType
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_TYPE
*
* @param orgType the value for LL.DIC_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgType
(
String
orgType
)
{
this
.
orgType
=
orgType
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.ORG_ADDRESS
*
* @return the value of LL.DIC_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getOrgAddress
()
{
return
orgAddress
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.ORG_ADDRESS
*
* @param orgAddress the value for LL.DIC_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgAddress
(
String
orgAddress
)
{
this
.
orgAddress
=
orgAddress
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.DIC_ORG.PARENT_ID
*
* @return the value of LL.DIC_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getParentId
()
{
return
parentId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.DIC_ORG.PARENT_ID
*
* @param parentId the value for LL.DIC_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setParentId
(
Long
parentId
)
{
this
.
parentId
=
parentId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SerBlock.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SerBlock
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.BLOCK_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
blockCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.BLOCK_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
blockName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_BLOCK.RETURN_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
returnType
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.ID
*
* @return the value of LL.SER_BLOCK.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.ID
*
* @param id the value for LL.SER_BLOCK.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.CREATE_DATE
*
* @return the value of LL.SER_BLOCK.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.CREATE_DATE
*
* @param createDate the value for LL.SER_BLOCK.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.CREATE_USERID
*
* @return the value of LL.SER_BLOCK.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.CREATE_USERID
*
* @param createUserid the value for LL.SER_BLOCK.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.STATE
*
* @return the value of LL.SER_BLOCK.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.STATE
*
* @param state the value for LL.SER_BLOCK.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.BLOCK_CODE
*
* @return the value of LL.SER_BLOCK.BLOCK_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getBlockCode
()
{
return
blockCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.BLOCK_CODE
*
* @param blockCode the value for LL.SER_BLOCK.BLOCK_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setBlockCode
(
String
blockCode
)
{
this
.
blockCode
=
blockCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.BLOCK_NAME
*
* @return the value of LL.SER_BLOCK.BLOCK_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getBlockName
()
{
return
blockName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.BLOCK_NAME
*
* @param blockName the value for LL.SER_BLOCK.BLOCK_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setBlockName
(
String
blockName
)
{
this
.
blockName
=
blockName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_BLOCK.RETURN_TYPE
*
* @return the value of LL.SER_BLOCK.RETURN_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getReturnType
()
{
return
returnType
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_BLOCK.RETURN_TYPE
*
* @param returnType the value for LL.SER_BLOCK.RETURN_TYPE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setReturnType
(
Short
returnType
)
{
this
.
returnType
=
returnType
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SerPage.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SerPage
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.PAGE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
pageCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE.PAGE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
pageName
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.ID
*
* @return the value of LL.SER_PAGE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.ID
*
* @param id the value for LL.SER_PAGE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.CREATE_DATE
*
* @return the value of LL.SER_PAGE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.CREATE_DATE
*
* @param createDate the value for LL.SER_PAGE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.CREATE_USERID
*
* @return the value of LL.SER_PAGE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.CREATE_USERID
*
* @param createUserid the value for LL.SER_PAGE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.STATE
*
* @return the value of LL.SER_PAGE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.STATE
*
* @param state the value for LL.SER_PAGE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.PAGE_CODE
*
* @return the value of LL.SER_PAGE.PAGE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getPageCode
()
{
return
pageCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.PAGE_CODE
*
* @param pageCode the value for LL.SER_PAGE.PAGE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setPageCode
(
String
pageCode
)
{
this
.
pageCode
=
pageCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE.PAGE_NAME
*
* @return the value of LL.SER_PAGE.PAGE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getPageName
()
{
return
pageName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE.PAGE_NAME
*
* @param pageName the value for LL.SER_PAGE.PAGE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setPageName
(
String
pageName
)
{
this
.
pageName
=
pageName
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SerPageBlockRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SerPageBlockRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.BLOCK_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
blockId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_BLOCK_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
pageId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.ID
*
* @return the value of LL.SER_PAGE_BLOCK_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.ID
*
* @param id the value for LL.SER_PAGE_BLOCK_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.CREATE_DATE
*
* @return the value of LL.SER_PAGE_BLOCK_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.CREATE_DATE
*
* @param createDate the value for LL.SER_PAGE_BLOCK_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.CREATE_USERID
*
* @return the value of LL.SER_PAGE_BLOCK_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.CREATE_USERID
*
* @param createUserid the value for LL.SER_PAGE_BLOCK_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.STATE
*
* @return the value of LL.SER_PAGE_BLOCK_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.STATE
*
* @param state the value for LL.SER_PAGE_BLOCK_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.BLOCK_ID
*
* @return the value of LL.SER_PAGE_BLOCK_RS.BLOCK_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getBlockId
()
{
return
blockId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.BLOCK_ID
*
* @param blockId the value for LL.SER_PAGE_BLOCK_RS.BLOCK_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setBlockId
(
Long
blockId
)
{
this
.
blockId
=
blockId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_BLOCK_RS.PAGE_ID
*
* @return the value of LL.SER_PAGE_BLOCK_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getPageId
()
{
return
pageId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_BLOCK_RS.PAGE_ID
*
* @param pageId the value for LL.SER_PAGE_BLOCK_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setPageId
(
Long
pageId
)
{
this
.
pageId
=
pageId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SerPageDimRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SerPageDimRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.DIM_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
dimId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SER_PAGE_DIM_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
pageId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.ID
*
* @return the value of LL.SER_PAGE_DIM_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.ID
*
* @param id the value for LL.SER_PAGE_DIM_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.CREATE_DATE
*
* @return the value of LL.SER_PAGE_DIM_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.CREATE_DATE
*
* @param createDate the value for LL.SER_PAGE_DIM_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.CREATE_USERID
*
* @return the value of LL.SER_PAGE_DIM_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.CREATE_USERID
*
* @param createUserid the value for LL.SER_PAGE_DIM_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.STATE
*
* @return the value of LL.SER_PAGE_DIM_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.STATE
*
* @param state the value for LL.SER_PAGE_DIM_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.DIM_ID
*
* @return the value of LL.SER_PAGE_DIM_RS.DIM_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getDimId
()
{
return
dimId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.DIM_ID
*
* @param dimId the value for LL.SER_PAGE_DIM_RS.DIM_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setDimId
(
Long
dimId
)
{
this
.
dimId
=
dimId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SER_PAGE_DIM_RS.PAGE_ID
*
* @return the value of LL.SER_PAGE_DIM_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getPageId
()
{
return
pageId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SER_PAGE_DIM_RS.PAGE_ID
*
* @param pageId the value for LL.SER_PAGE_DIM_RS.PAGE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setPageId
(
Long
pageId
)
{
this
.
pageId
=
pageId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysMenu.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysMenu
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.CREATE_DATA
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createData
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.MENU_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
menuName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.MENU_URL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
menuUrl
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.MENU_IMAGE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
menuImage
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_MENU.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
parentId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.ID
*
* @return the value of LL.SYS_MENU.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.ID
*
* @param id the value for LL.SYS_MENU.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.CREATE_DATA
*
* @return the value of LL.SYS_MENU.CREATE_DATA
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateData
()
{
return
createData
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.CREATE_DATA
*
* @param createData the value for LL.SYS_MENU.CREATE_DATA
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateData
(
Date
createData
)
{
this
.
createData
=
createData
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.CREATE_USERID
*
* @return the value of LL.SYS_MENU.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.CREATE_USERID
*
* @param createUserid the value for LL.SYS_MENU.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.STATE
*
* @return the value of LL.SYS_MENU.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.STATE
*
* @param state the value for LL.SYS_MENU.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.MENU_NAME
*
* @return the value of LL.SYS_MENU.MENU_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getMenuName
()
{
return
menuName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.MENU_NAME
*
* @param menuName the value for LL.SYS_MENU.MENU_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setMenuName
(
String
menuName
)
{
this
.
menuName
=
menuName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.MENU_URL
*
* @return the value of LL.SYS_MENU.MENU_URL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getMenuUrl
()
{
return
menuUrl
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.MENU_URL
*
* @param menuUrl the value for LL.SYS_MENU.MENU_URL
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setMenuUrl
(
String
menuUrl
)
{
this
.
menuUrl
=
menuUrl
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.MENU_IMAGE
*
* @return the value of LL.SYS_MENU.MENU_IMAGE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getMenuImage
()
{
return
menuImage
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.MENU_IMAGE
*
* @param menuImage the value for LL.SYS_MENU.MENU_IMAGE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setMenuImage
(
String
menuImage
)
{
this
.
menuImage
=
menuImage
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_MENU.PARENT_ID
*
* @return the value of LL.SYS_MENU.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getParentId
()
{
return
parentId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_MENU.PARENT_ID
*
* @param parentId the value for LL.SYS_MENU.PARENT_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setParentId
(
Long
parentId
)
{
this
.
parentId
=
parentId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysOrg.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysOrg
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.CREATE_DATA
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
Date
createData
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.STATE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgNo
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgShortName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgGroup
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgType
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
String
orgAddress
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
private
Long
parentId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ID
*
* @return the value of LL.SYS_ORG.ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ID
*
* @param id the value for LL.SYS_ORG.ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.CREATE_DATA
*
* @return the value of LL.SYS_ORG.CREATE_DATA
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
Date
getCreateData
()
{
return
createData
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.CREATE_DATA
*
* @param createData the value for LL.SYS_ORG.CREATE_DATA
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setCreateData
(
Date
createData
)
{
this
.
createData
=
createData
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.CREATE_USERID
*
* @return the value of LL.SYS_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.CREATE_USERID
*
* @param createUserid the value for LL.SYS_ORG.CREATE_USERID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setCreateUserid
(
String
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.STATE
*
* @return the value of LL.SYS_ORG.STATE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.STATE
*
* @param state the value for LL.SYS_ORG.STATE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_CODE
*
* @return the value of LL.SYS_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgCode
()
{
return
orgCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_CODE
*
* @param orgCode the value for LL.SYS_ORG.ORG_CODE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgCode
(
String
orgCode
)
{
this
.
orgCode
=
orgCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_NAME
*
* @return the value of LL.SYS_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgName
()
{
return
orgName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_NAME
*
* @param orgName the value for LL.SYS_ORG.ORG_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgName
(
String
orgName
)
{
this
.
orgName
=
orgName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_NO
*
* @return the value of LL.SYS_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgNo
()
{
return
orgNo
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_NO
*
* @param orgNo the value for LL.SYS_ORG.ORG_NO
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgNo
(
String
orgNo
)
{
this
.
orgNo
=
orgNo
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_SHORT_NAME
*
* @return the value of LL.SYS_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgShortName
()
{
return
orgShortName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_SHORT_NAME
*
* @param orgShortName the value for LL.SYS_ORG.ORG_SHORT_NAME
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgShortName
(
String
orgShortName
)
{
this
.
orgShortName
=
orgShortName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_GROUP
*
* @return the value of LL.SYS_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgGroup
()
{
return
orgGroup
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_GROUP
*
* @param orgGroup the value for LL.SYS_ORG.ORG_GROUP
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgGroup
(
String
orgGroup
)
{
this
.
orgGroup
=
orgGroup
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_TYPE
*
* @return the value of LL.SYS_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgType
()
{
return
orgType
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_TYPE
*
* @param orgType the value for LL.SYS_ORG.ORG_TYPE
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgType
(
String
orgType
)
{
this
.
orgType
=
orgType
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.ORG_ADDRESS
*
* @return the value of LL.SYS_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
String
getOrgAddress
()
{
return
orgAddress
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.ORG_ADDRESS
*
* @param orgAddress the value for LL.SYS_ORG.ORG_ADDRESS
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setOrgAddress
(
String
orgAddress
)
{
this
.
orgAddress
=
orgAddress
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ORG.PARENT_ID
*
* @return the value of LL.SYS_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
Long
getParentId
()
{
return
parentId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ORG.PARENT_ID
*
* @param parentId the value for LL.SYS_ORG.PARENT_ID
*
* @mbggenerated Tue Oct 22 10:02:26 CST 2019
*/
public
void
setParentId
(
Long
parentId
)
{
this
.
parentId
=
parentId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysProject.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysProject
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.PROJECT_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
projectCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_PROJECT.PROJECT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
projectName
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.ID
*
* @return the value of LL.SYS_PROJECT.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.ID
*
* @param id the value for LL.SYS_PROJECT.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.CREATE_DATE
*
* @return the value of LL.SYS_PROJECT.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.CREATE_DATE
*
* @param createDate the value for LL.SYS_PROJECT.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.CREATE_USERID
*
* @return the value of LL.SYS_PROJECT.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.CREATE_USERID
*
* @param createUserid the value for LL.SYS_PROJECT.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.STATE
*
* @return the value of LL.SYS_PROJECT.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.STATE
*
* @param state the value for LL.SYS_PROJECT.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.PROJECT_CODE
*
* @return the value of LL.SYS_PROJECT.PROJECT_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getProjectCode
()
{
return
projectCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.PROJECT_CODE
*
* @param projectCode the value for LL.SYS_PROJECT.PROJECT_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setProjectCode
(
String
projectCode
)
{
this
.
projectCode
=
projectCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_PROJECT.PROJECT_NAME
*
* @return the value of LL.SYS_PROJECT.PROJECT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getProjectName
()
{
return
projectName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_PROJECT.PROJECT_NAME
*
* @param projectName the value for LL.SYS_PROJECT.PROJECT_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setProjectName
(
String
projectName
)
{
this
.
projectName
=
projectName
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysRole.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysRole
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.ROLE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
String
roleName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE.ROLE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
roleCode
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.ID
*
* @return the value of LL.SYS_ROLE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.ID
*
* @param id the value for LL.SYS_ROLE.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.CREATE_DATE
*
* @return the value of LL.SYS_ROLE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.CREATE_DATE
*
* @param createDate the value for LL.SYS_ROLE.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.CREATE_USERID
*
* @return the value of LL.SYS_ROLE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.CREATE_USERID
*
* @param createUserid the value for LL.SYS_ROLE.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.STATE
*
* @return the value of LL.SYS_ROLE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.STATE
*
* @param state the value for LL.SYS_ROLE.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.ROLE_NAME
*
* @return the value of LL.SYS_ROLE.ROLE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
String
getRoleName
()
{
return
roleName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.ROLE_NAME
*
* @param roleName the value for LL.SYS_ROLE.ROLE_NAME
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setRoleName
(
String
roleName
)
{
this
.
roleName
=
roleName
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE.ROLE_CODE
*
* @return the value of LL.SYS_ROLE.ROLE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getRoleCode
()
{
return
roleCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE.ROLE_CODE
*
* @param roleCode the value for LL.SYS_ROLE.ROLE_CODE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setRoleCode
(
Long
roleCode
)
{
this
.
roleCode
=
roleCode
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysRoleMenuRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysRoleMenuRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
menuId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_ROLE_MENU_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
roleId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.ID
*
* @return the value of LL.SYS_ROLE_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.ID
*
* @param id the value for LL.SYS_ROLE_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.CREATE_DATE
*
* @return the value of LL.SYS_ROLE_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.CREATE_DATE
*
* @param createDate the value for LL.SYS_ROLE_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.CREATE_USERID
*
* @return the value of LL.SYS_ROLE_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.CREATE_USERID
*
* @param createUserid the value for LL.SYS_ROLE_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.STATE
*
* @return the value of LL.SYS_ROLE_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.STATE
*
* @param state the value for LL.SYS_ROLE_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.MENU_ID
*
* @return the value of LL.SYS_ROLE_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getMenuId
()
{
return
menuId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.MENU_ID
*
* @param menuId the value for LL.SYS_ROLE_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setMenuId
(
Long
menuId
)
{
this
.
menuId
=
menuId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_ROLE_MENU_RS.ROLE_ID
*
* @return the value of LL.SYS_ROLE_MENU_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getRoleId
()
{
return
roleId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_ROLE_MENU_RS.ROLE_ID
*
* @param roleId the value for LL.SYS_ROLE_MENU_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setRoleId
(
Long
roleId
)
{
this
.
roleId
=
roleId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysUserMenuRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysUserMenuRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
userId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
menuId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.ID
*
* @return the value of LL.SYS_USER_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.ID
*
* @param id the value for LL.SYS_USER_MENU_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.CREATE_DATE
*
* @return the value of LL.SYS_USER_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.CREATE_DATE
*
* @param createDate the value for LL.SYS_USER_MENU_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.CREATE_USERID
*
* @return the value of LL.SYS_USER_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.CREATE_USERID
*
* @param createUserid the value for LL.SYS_USER_MENU_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.STATE
*
* @return the value of LL.SYS_USER_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.STATE
*
* @param state the value for LL.SYS_USER_MENU_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.USER_ID
*
* @return the value of LL.SYS_USER_MENU_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getUserId
()
{
return
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.USER_ID
*
* @param userId the value for LL.SYS_USER_MENU_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_MENU_RS.MENU_ID
*
* @return the value of LL.SYS_USER_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getMenuId
()
{
return
menuId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_MENU_RS.MENU_ID
*
* @param menuId the value for LL.SYS_USER_MENU_RS.MENU_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setMenuId
(
Long
menuId
)
{
this
.
menuId
=
menuId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysUserOrgRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysUserOrgRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
userId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ORG_RS.ORG_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
orgId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.ID
*
* @return the value of LL.SYS_USER_ORG_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.ID
*
* @param id the value for LL.SYS_USER_ORG_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.CREATE_DATE
*
* @return the value of LL.SYS_USER_ORG_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.CREATE_DATE
*
* @param createDate the value for LL.SYS_USER_ORG_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.CREATE_USERID
*
* @return the value of LL.SYS_USER_ORG_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.CREATE_USERID
*
* @param createUserid the value for LL.SYS_USER_ORG_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.STATE
*
* @return the value of LL.SYS_USER_ORG_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.STATE
*
* @param state the value for LL.SYS_USER_ORG_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.USER_ID
*
* @return the value of LL.SYS_USER_ORG_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getUserId
()
{
return
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.USER_ID
*
* @param userId the value for LL.SYS_USER_ORG_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ORG_RS.ORG_ID
*
* @return the value of LL.SYS_USER_ORG_RS.ORG_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getOrgId
()
{
return
orgId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ORG_RS.ORG_ID
*
* @param orgId the value for LL.SYS_USER_ORG_RS.ORG_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setOrgId
(
Long
orgId
)
{
this
.
orgId
=
orgId
;
}
}
\ No newline at end of file
bsoft-api/src/main/java/com/bsoft/api/model/SysUserRoleRs.java
0 → 100644
View file @
381f7cd4
package
com
.
bsoft
.
api
.
model
;
import
java.util.Date
;
public
class
SysUserRoleRs
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Date
createDate
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
createUserid
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Short
state
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
userId
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column LL.SYS_USER_ROLE_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
private
Long
roleId
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.ID
*
* @return the value of LL.SYS_USER_ROLE_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.ID
*
* @param id the value for LL.SYS_USER_ROLE_RS.ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.CREATE_DATE
*
* @return the value of LL.SYS_USER_ROLE_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Date
getCreateDate
()
{
return
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.CREATE_DATE
*
* @param createDate the value for LL.SYS_USER_ROLE_RS.CREATE_DATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateDate
(
Date
createDate
)
{
this
.
createDate
=
createDate
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.CREATE_USERID
*
* @return the value of LL.SYS_USER_ROLE_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getCreateUserid
()
{
return
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.CREATE_USERID
*
* @param createUserid the value for LL.SYS_USER_ROLE_RS.CREATE_USERID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setCreateUserid
(
Long
createUserid
)
{
this
.
createUserid
=
createUserid
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.STATE
*
* @return the value of LL.SYS_USER_ROLE_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Short
getState
()
{
return
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.STATE
*
* @param state the value for LL.SYS_USER_ROLE_RS.STATE
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setState
(
Short
state
)
{
this
.
state
=
state
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.USER_ID
*
* @return the value of LL.SYS_USER_ROLE_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getUserId
()
{
return
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.USER_ID
*
* @param userId the value for LL.SYS_USER_ROLE_RS.USER_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column LL.SYS_USER_ROLE_RS.ROLE_ID
*
* @return the value of LL.SYS_USER_ROLE_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
Long
getRoleId
()
{
return
roleId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column LL.SYS_USER_ROLE_RS.ROLE_ID
*
* @param roleId the value for LL.SYS_USER_ROLE_RS.ROLE_ID
*
* @mbggenerated Tue Oct 22 14:44:12 CST 2019
*/
public
void
setRoleId
(
Long
roleId
)
{
this
.
roleId
=
roleId
;
}
}
\ No newline at end of file
bsoft-api/src/main/resources/mapper/DicDimMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.DicDimMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.DicDim"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"DIM_NAME"
jdbcType=
"NVARCHAR2"
property=
"dimName"
/>
<result
column=
"DIM_FIELD"
jdbcType=
"NVARCHAR2"
property=
"dimField"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.DIC_DIM
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.DicDim"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_DIC_DIM_ID.nextval from dual
</selectKey>
insert into LL.DIC_DIM (CREATE_DATE, CREATE_USERID, STATE,
DIM_NAME, DIM_FIELD)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{dimName,jdbcType=NVARCHAR2}, #{dimField,jdbcType=NVARCHAR2})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.DicDim"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.DIC_DIM
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
DIM_NAME = #{dimName,jdbcType=NVARCHAR2},
DIM_FIELD = #{dimField,jdbcType=NVARCHAR2}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, DIM_NAME, DIM_FIELD
from LL.DIC_DIM
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, DIM_NAME, DIM_FIELD
from LL.DIC_DIM
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/DicIndMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.DicIndMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.DicInd"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"IND_CODE"
jdbcType=
"NVARCHAR2"
property=
"indCode"
/>
<result
column=
"IND_NAME"
jdbcType=
"NVARCHAR2"
property=
"indName"
/>
<result
column=
"COMPUTE_MODE"
jdbcType=
"DECIMAL"
property=
"computeMode"
/>
<result
column=
"EXEC_SQL"
jdbcType=
"NVARCHAR2"
property=
"execSql"
/>
<result
column=
"DESCRIBE"
jdbcType=
"NVARCHAR2"
property=
"describe"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.DIC_IND
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.DicInd"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_DIC_IND_ID.nextval from dual
</selectKey>
insert into LL.DIC_IND (CREATE_DATE, CREATE_USERID, STATE,
IND_CODE, IND_NAME, COMPUTE_MODE,
EXEC_SQL, DESCRIBE)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{indCode,jdbcType=NVARCHAR2}, #{indName,jdbcType=NVARCHAR2}, #{computeMode,jdbcType=DECIMAL},
#{execSql,jdbcType=NVARCHAR2}, #{describe,jdbcType=NVARCHAR2})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.DicInd"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.DIC_IND
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
IND_CODE = #{indCode,jdbcType=NVARCHAR2},
IND_NAME = #{indName,jdbcType=NVARCHAR2},
COMPUTE_MODE = #{computeMode,jdbcType=DECIMAL},
EXEC_SQL = #{execSql,jdbcType=NVARCHAR2},
DESCRIBE = #{describe,jdbcType=NVARCHAR2}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, IND_CODE, IND_NAME, COMPUTE_MODE, EXEC_SQL,
DESCRIBE
from LL.DIC_IND
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, IND_CODE, IND_NAME, COMPUTE_MODE, EXEC_SQL,
DESCRIBE
from LL.DIC_IND
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/DicOrgMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.DicOrgMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.DicOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"ORG_CODE"
jdbcType=
"NVARCHAR2"
property=
"orgCode"
/>
<result
column=
"ORG_NAME"
jdbcType=
"NVARCHAR2"
property=
"orgName"
/>
<result
column=
"ORG_NO"
jdbcType=
"NVARCHAR2"
property=
"orgNo"
/>
<result
column=
"ORG_SHORT_NAME"
jdbcType=
"NVARCHAR2"
property=
"orgShortName"
/>
<result
column=
"ORG_GROUP"
jdbcType=
"NVARCHAR2"
property=
"orgGroup"
/>
<result
column=
"ORG_TYPE"
jdbcType=
"NVARCHAR2"
property=
"orgType"
/>
<result
column=
"ORG_ADDRESS"
jdbcType=
"NVARCHAR2"
property=
"orgAddress"
/>
<result
column=
"PARENT_ID"
jdbcType=
"DECIMAL"
property=
"parentId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.DIC_ORG
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.DicOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_DIC_ORG_ID.nextval from dual
</selectKey>
insert into LL.DIC_ORG (CREATE_DATE, CREATE_USERID, STATE,
ORG_CODE, ORG_NAME, ORG_NO,
ORG_SHORT_NAME, ORG_GROUP, ORG_TYPE,
ORG_ADDRESS, PARENT_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{orgCode,jdbcType=NVARCHAR2}, #{orgName,jdbcType=NVARCHAR2}, #{orgNo,jdbcType=NVARCHAR2},
#{orgShortName,jdbcType=NVARCHAR2}, #{orgGroup,jdbcType=NVARCHAR2}, #{orgType,jdbcType=NVARCHAR2},
#{orgAddress,jdbcType=NVARCHAR2}, #{parentId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.DicOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.DIC_ORG
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
ORG_CODE = #{orgCode,jdbcType=NVARCHAR2},
ORG_NAME = #{orgName,jdbcType=NVARCHAR2},
ORG_NO = #{orgNo,jdbcType=NVARCHAR2},
ORG_SHORT_NAME = #{orgShortName,jdbcType=NVARCHAR2},
ORG_GROUP = #{orgGroup,jdbcType=NVARCHAR2},
ORG_TYPE = #{orgType,jdbcType=NVARCHAR2},
ORG_ADDRESS = #{orgAddress,jdbcType=NVARCHAR2},
PARENT_ID = #{parentId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, ORG_CODE, ORG_NAME, ORG_NO, ORG_SHORT_NAME,
ORG_GROUP, ORG_TYPE, ORG_ADDRESS, PARENT_ID
from LL.DIC_ORG
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, ORG_CODE, ORG_NAME, ORG_NO, ORG_SHORT_NAME,
ORG_GROUP, ORG_TYPE, ORG_ADDRESS, PARENT_ID
from LL.DIC_ORG
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SerBlockMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SerBlockMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SerBlock"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"BLOCK_CODE"
jdbcType=
"NVARCHAR2"
property=
"blockCode"
/>
<result
column=
"BLOCK_NAME"
jdbcType=
"NVARCHAR2"
property=
"blockName"
/>
<result
column=
"RETURN_TYPE"
jdbcType=
"DECIMAL"
property=
"returnType"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SER_BLOCK
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SerBlock"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SER_BLOCK_ID.nextval from dual
</selectKey>
insert into LL.SER_BLOCK (CREATE_DATE, CREATE_USERID, STATE,
BLOCK_CODE, BLOCK_NAME, RETURN_TYPE
)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{blockCode,jdbcType=NVARCHAR2}, #{blockName,jdbcType=NVARCHAR2}, #{returnType,jdbcType=DECIMAL}
)
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SerBlock"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SER_BLOCK
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
BLOCK_CODE = #{blockCode,jdbcType=NVARCHAR2},
BLOCK_NAME = #{blockName,jdbcType=NVARCHAR2},
RETURN_TYPE = #{returnType,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, BLOCK_CODE, BLOCK_NAME, RETURN_TYPE
from LL.SER_BLOCK
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, BLOCK_CODE, BLOCK_NAME, RETURN_TYPE
from LL.SER_BLOCK
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SerPageBlockRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SerPageBlockRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SerPageBlockRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"BLOCK_ID"
jdbcType=
"DECIMAL"
property=
"blockId"
/>
<result
column=
"PAGE_ID"
jdbcType=
"DECIMAL"
property=
"pageId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SER_PAGE_BLOCK_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SerPageBlockRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SER_PAGE_BLOCK_RS_ID.nextval from dual
</selectKey>
insert into LL.SER_PAGE_BLOCK_RS (CREATE_DATE, CREATE_USERID, STATE,
BLOCK_ID, PAGE_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{blockId,jdbcType=DECIMAL}, #{pageId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SerPageBlockRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SER_PAGE_BLOCK_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
BLOCK_ID = #{blockId,jdbcType=DECIMAL},
PAGE_ID = #{pageId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, BLOCK_ID, PAGE_ID
from LL.SER_PAGE_BLOCK_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, BLOCK_ID, PAGE_ID
from LL.SER_PAGE_BLOCK_RS
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SerPageDimRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SerPageDimRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SerPageDimRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"DIM_ID"
jdbcType=
"DECIMAL"
property=
"dimId"
/>
<result
column=
"PAGE_ID"
jdbcType=
"DECIMAL"
property=
"pageId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SER_PAGE_DIM_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SerPageDimRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SER_PAGE_DIM_RS_ID.nextval from dual
</selectKey>
insert into LL.SER_PAGE_DIM_RS (CREATE_DATE, CREATE_USERID, STATE,
DIM_ID, PAGE_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{dimId,jdbcType=DECIMAL}, #{pageId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SerPageDimRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SER_PAGE_DIM_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
DIM_ID = #{dimId,jdbcType=DECIMAL},
PAGE_ID = #{pageId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, DIM_ID, PAGE_ID
from LL.SER_PAGE_DIM_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, DIM_ID, PAGE_ID
from LL.SER_PAGE_DIM_RS
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SerPageMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SerPageMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SerPage"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"PAGE_CODE"
jdbcType=
"NVARCHAR2"
property=
"pageCode"
/>
<result
column=
"PAGE_NAME"
jdbcType=
"NVARCHAR2"
property=
"pageName"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SER_PAGE
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SerPage"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SER_PAGE_ID.nextval from dual
</selectKey>
insert into LL.SER_PAGE (CREATE_DATE, CREATE_USERID, STATE,
PAGE_CODE, PAGE_NAME)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{pageCode,jdbcType=NVARCHAR2}, #{pageName,jdbcType=NVARCHAR2})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SerPage"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SER_PAGE
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
PAGE_CODE = #{pageCode,jdbcType=NVARCHAR2},
PAGE_NAME = #{pageName,jdbcType=NVARCHAR2}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, PAGE_CODE, PAGE_NAME
from LL.SER_PAGE
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, PAGE_CODE, PAGE_NAME
from LL.SER_PAGE
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysMenuMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysMenuMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysMenu"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATA"
jdbcType=
"TIMESTAMP"
property=
"createData"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"MENU_NAME"
jdbcType=
"NVARCHAR2"
property=
"menuName"
/>
<result
column=
"MENU_URL"
jdbcType=
"NVARCHAR2"
property=
"menuUrl"
/>
<result
column=
"MENU_IMAGE"
jdbcType=
"NVARCHAR2"
property=
"menuImage"
/>
<result
column=
"PARENT_ID"
jdbcType=
"DECIMAL"
property=
"parentId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_MENU
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysMenu"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_MENU_ID.nextval from dual
</selectKey>
insert into LL.SYS_MENU (CREATE_DATA, CREATE_USERID, STATE,
MENU_NAME, MENU_URL, MENU_IMAGE,
PARENT_ID)
values (#{createData,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{menuName,jdbcType=NVARCHAR2}, #{menuUrl,jdbcType=NVARCHAR2}, #{menuImage,jdbcType=NVARCHAR2},
#{parentId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysMenu"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_MENU
set CREATE_DATA = #{createData,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
MENU_NAME = #{menuName,jdbcType=NVARCHAR2},
MENU_URL = #{menuUrl,jdbcType=NVARCHAR2},
MENU_IMAGE = #{menuImage,jdbcType=NVARCHAR2},
PARENT_ID = #{parentId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATA, CREATE_USERID, STATE, MENU_NAME, MENU_URL, MENU_IMAGE, PARENT_ID
from LL.SYS_MENU
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATA, CREATE_USERID, STATE, MENU_NAME, MENU_URL, MENU_IMAGE, PARENT_ID
from LL.SYS_MENU
</select>
<select
id=
"selectMenuByUser"
resultMap=
"BaseResultMap"
>
select DISTINCT m.ID,m.CREATE_DATA,m.CREATE_USERID,m.STATE,m.MENU_NAME,m.MENU_URL,m.MENU_IMAGE,m.PARENT_ID
from
SYS_ROLE_MENU_RS rmr
LEFT JOIN
SYS_MENU m on rmr.MENU_ID = m.ID
LEFT JOIN
SYS_USER_ROLE_RS urr on rmr.ROLE_ID = urr.Role_ID
where rmr.STATE=1 and m.STATE=1 and urr.STATE=1 and urr.USER_ID = 2
union
select DISTINCT m.ID,m.CREATE_DATA,m.CREATE_USERID,m.STATE,m.MENU_NAME,m.MENU_URL,m.MENU_IMAGE,m.PARENT_ID
from
SYS_USER_MENU_RS umr
LEFT JOIN
SYS_MENU m on umr.MENU_ID = m.ID
where umr.STATE=1 and m.STATE=1 and umr.USER_ID = #{userId,jdbcType=DECIMAL}
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysOrgMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysOrgMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATA"
jdbcType=
"TIMESTAMP"
property=
"createData"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"NVARCHAR2"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"ORG_CODE"
jdbcType=
"NVARCHAR2"
property=
"orgCode"
/>
<result
column=
"ORG_NAME"
jdbcType=
"NVARCHAR2"
property=
"orgName"
/>
<result
column=
"ORG_NO"
jdbcType=
"NVARCHAR2"
property=
"orgNo"
/>
<result
column=
"ORG_SHORT_NAME"
jdbcType=
"NVARCHAR2"
property=
"orgShortName"
/>
<result
column=
"ORG_GROUP"
jdbcType=
"NVARCHAR2"
property=
"orgGroup"
/>
<result
column=
"ORG_TYPE"
jdbcType=
"NVARCHAR2"
property=
"orgType"
/>
<result
column=
"ORG_ADDRESS"
jdbcType=
"NVARCHAR2"
property=
"orgAddress"
/>
<result
column=
"PARENT_ID"
jdbcType=
"DECIMAL"
property=
"parentId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
delete from LL.SYS_ORG
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_ORG_ID.nextval from dual
</selectKey>
insert into LL.SYS_ORG (CREATE_DATA, CREATE_USERID, STATE,
ORG_CODE, ORG_NAME, ORG_NO,
ORG_SHORT_NAME, ORG_GROUP, ORG_TYPE,
ORG_ADDRESS, PARENT_ID)
values (#{createData,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=NVARCHAR2}, #{state,jdbcType=DECIMAL},
#{orgCode,jdbcType=NVARCHAR2}, #{orgName,jdbcType=NVARCHAR2}, #{orgNo,jdbcType=NVARCHAR2},
#{orgShortName,jdbcType=NVARCHAR2}, #{orgGroup,jdbcType=NVARCHAR2}, #{orgType,jdbcType=NVARCHAR2},
#{orgAddress,jdbcType=NVARCHAR2}, #{parentId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysOrg"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
update LL.SYS_ORG
set CREATE_DATA = #{createData,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=NVARCHAR2},
STATE = #{state,jdbcType=DECIMAL},
ORG_CODE = #{orgCode,jdbcType=NVARCHAR2},
ORG_NAME = #{orgName,jdbcType=NVARCHAR2},
ORG_NO = #{orgNo,jdbcType=NVARCHAR2},
ORG_SHORT_NAME = #{orgShortName,jdbcType=NVARCHAR2},
ORG_GROUP = #{orgGroup,jdbcType=NVARCHAR2},
ORG_TYPE = #{orgType,jdbcType=NVARCHAR2},
ORG_ADDRESS = #{orgAddress,jdbcType=NVARCHAR2},
PARENT_ID = #{parentId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
select ID, CREATE_DATA, CREATE_USERID, STATE, ORG_CODE, ORG_NAME, ORG_NO, ORG_SHORT_NAME,
ORG_GROUP, ORG_TYPE, ORG_ADDRESS, PARENT_ID
from LL.SYS_ORG
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 10:02:26 CST 2019.
-->
select ID, CREATE_DATA, CREATE_USERID, STATE, ORG_CODE, ORG_NAME, ORG_NO, ORG_SHORT_NAME,
ORG_GROUP, ORG_TYPE, ORG_ADDRESS, PARENT_ID
from LL.SYS_ORG
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysProjectMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysProjectMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysProject"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"PROJECT_CODE"
jdbcType=
"NVARCHAR2"
property=
"projectCode"
/>
<result
column=
"PROJECT_NAME"
jdbcType=
"NVARCHAR2"
property=
"projectName"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_PROJECT
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysProject"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_PROJECT_ID.nextval from dual
</selectKey>
insert into LL.SYS_PROJECT (CREATE_DATE, CREATE_USERID, STATE,
PROJECT_CODE, PROJECT_NAME)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{projectCode,jdbcType=NVARCHAR2}, #{projectName,jdbcType=NVARCHAR2})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysProject"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_PROJECT
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
PROJECT_CODE = #{projectCode,jdbcType=NVARCHAR2},
PROJECT_NAME = #{projectName,jdbcType=NVARCHAR2}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, PROJECT_CODE, PROJECT_NAME
from LL.SYS_PROJECT
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, PROJECT_CODE, PROJECT_NAME
from LL.SYS_PROJECT
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysRoleMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysRoleMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysRole"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"ROLE_NAME"
jdbcType=
"NVARCHAR2"
property=
"roleName"
/>
<result
column=
"ROLE_CODE"
jdbcType=
"DECIMAL"
property=
"roleCode"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_ROLE
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysRole"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_ROLE_ID.nextval from dual
</selectKey>
insert into LL.SYS_ROLE (CREATE_DATE, CREATE_USERID, STATE,
ROLE_NAME, ROLE_CODE)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{roleName,jdbcType=NVARCHAR2}, #{roleCode,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysRole"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_ROLE
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
ROLE_NAME = #{roleName,jdbcType=NVARCHAR2},
ROLE_CODE = #{roleCode,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, ROLE_NAME, ROLE_CODE
from LL.SYS_ROLE
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, ROLE_NAME, ROLE_CODE
from LL.SYS_ROLE
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysRoleMenuRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysRoleMenuRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysRoleMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"MENU_ID"
jdbcType=
"DECIMAL"
property=
"menuId"
/>
<result
column=
"ROLE_ID"
jdbcType=
"DECIMAL"
property=
"roleId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_ROLE_MENU_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysRoleMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_ROLE_MENU_RS_ID.nextval from dual
</selectKey>
insert into LL.SYS_ROLE_MENU_RS (CREATE_DATE, CREATE_USERID, STATE,
MENU_ID, ROLE_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{menuId,jdbcType=DECIMAL}, #{roleId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysRoleMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_ROLE_MENU_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
MENU_ID = #{menuId,jdbcType=DECIMAL},
ROLE_ID = #{roleId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, MENU_ID, ROLE_ID
from LL.SYS_ROLE_MENU_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, MENU_ID, ROLE_ID
from LL.SYS_ROLE_MENU_RS
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysUserMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysUserMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysUser"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"USER_CODE"
jdbcType=
"NVARCHAR2"
property=
"userCode"
/>
<result
column=
"USER_NAME"
jdbcType=
"NVARCHAR2"
property=
"userName"
/>
<result
column=
"PASSWORD"
jdbcType=
"NVARCHAR2"
property=
"password"
/>
<result
column=
"IDCARD"
jdbcType=
"NVARCHAR2"
property=
"idcard"
/>
<result
column=
"SEX"
jdbcType=
"NVARCHAR2"
property=
"sex"
/>
<result
column=
"MOBILE"
jdbcType=
"NVARCHAR2"
property=
"mobile"
/>
<result
column=
"PAGE_COUNT"
jdbcType=
"DECIMAL"
property=
"pageCount"
/>
<result
column=
"ERROR_COUNT"
jdbcType=
"DECIMAL"
property=
"errorCount"
/>
<result
column=
"ERROR_TIME"
jdbcType=
"TIMESTAMP"
property=
"errorTime"
/>
<result
column=
"LAST_TIME"
jdbcType=
"TIMESTAMP"
property=
"lastTime"
/>
<result
column=
"LAST_IP"
jdbcType=
"NVARCHAR2"
property=
"lastIp"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_USER
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysUser"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_USER_ID.nextval from dual
</selectKey>
insert into LL.SYS_USER (CREATE_DATE, CREATE_USERID, STATE,
USER_CODE, USER_NAME, PASSWORD,
IDCARD, SEX, MOBILE,
PAGE_COUNT, ERROR_COUNT, ERROR_TIME,
LAST_TIME, LAST_IP)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{userCode,jdbcType=NVARCHAR2}, #{userName,jdbcType=NVARCHAR2}, #{password,jdbcType=NVARCHAR2},
#{idcard,jdbcType=NVARCHAR2}, #{sex,jdbcType=NVARCHAR2}, #{mobile,jdbcType=NVARCHAR2},
#{pageCount,jdbcType=DECIMAL}, #{errorCount,jdbcType=DECIMAL}, #{errorTime,jdbcType=TIMESTAMP},
#{lastTime,jdbcType=TIMESTAMP}, #{lastIp,jdbcType=NVARCHAR2})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysUser"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_USER
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
USER_CODE = #{userCode,jdbcType=NVARCHAR2},
USER_NAME = #{userName,jdbcType=NVARCHAR2},
PASSWORD = #{password,jdbcType=NVARCHAR2},
IDCARD = #{idcard,jdbcType=NVARCHAR2},
SEX = #{sex,jdbcType=NVARCHAR2},
MOBILE = #{mobile,jdbcType=NVARCHAR2},
PAGE_COUNT = #{pageCount,jdbcType=DECIMAL},
ERROR_COUNT = #{errorCount,jdbcType=DECIMAL},
ERROR_TIME = #{errorTime,jdbcType=TIMESTAMP},
LAST_TIME = #{lastTime,jdbcType=TIMESTAMP},
LAST_IP = #{lastIp,jdbcType=NVARCHAR2}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_CODE, USER_NAME, PASSWORD, IDCARD,
SEX, MOBILE, PAGE_COUNT, ERROR_COUNT, ERROR_TIME, LAST_TIME, LAST_IP
from LL.SYS_USER
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_CODE, USER_NAME, PASSWORD, IDCARD,
SEX, MOBILE, PAGE_COUNT, ERROR_COUNT, ERROR_TIME, LAST_TIME, LAST_IP
from LL.SYS_USER
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysUserMenuRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysUserMenuRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysUserMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"USER_ID"
jdbcType=
"DECIMAL"
property=
"userId"
/>
<result
column=
"MENU_ID"
jdbcType=
"DECIMAL"
property=
"menuId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_USER_MENU_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysUserMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_USER_MENU_RS_ID.nextval from dual
</selectKey>
insert into LL.SYS_USER_MENU_RS (CREATE_DATE, CREATE_USERID, STATE,
USER_ID, MENU_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{userId,jdbcType=DECIMAL}, #{menuId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysUserMenuRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_USER_MENU_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
USER_ID = #{userId,jdbcType=DECIMAL},
MENU_ID = #{menuId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, MENU_ID
from LL.SYS_USER_MENU_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, MENU_ID
from LL.SYS_USER_MENU_RS
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysUserOrgRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysUserOrgRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysUserOrgRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"USER_ID"
jdbcType=
"DECIMAL"
property=
"userId"
/>
<result
column=
"ORG_ID"
jdbcType=
"DECIMAL"
property=
"orgId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_USER_ORG_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysUserOrgRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_USER_ORG_RS_ID.nextval from dual
</selectKey>
insert into LL.SYS_USER_ORG_RS (CREATE_DATE, CREATE_USERID, STATE,
USER_ID, ORG_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{userId,jdbcType=DECIMAL}, #{orgId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysUserOrgRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_USER_ORG_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
USER_ID = #{userId,jdbcType=DECIMAL},
ORG_ID = #{orgId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, ORG_ID
from LL.SYS_USER_ORG_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, ORG_ID
from LL.SYS_USER_ORG_RS
</select>
</mapper>
\ No newline at end of file
bsoft-api/src/main/resources/mapper/SysUserRoleRsMapper.xml
0 → 100644
View file @
381f7cd4
<?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.bsoft.api.mapper.SysUserRoleRsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bsoft.api.model.SysUserRoleRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<id
column=
"ID"
jdbcType=
"DECIMAL"
property=
"id"
/>
<result
column=
"CREATE_DATE"
jdbcType=
"TIMESTAMP"
property=
"createDate"
/>
<result
column=
"CREATE_USERID"
jdbcType=
"DECIMAL"
property=
"createUserid"
/>
<result
column=
"STATE"
jdbcType=
"DECIMAL"
property=
"state"
/>
<result
column=
"USER_ID"
jdbcType=
"DECIMAL"
property=
"userId"
/>
<result
column=
"ROLE_ID"
jdbcType=
"DECIMAL"
property=
"roleId"
/>
</resultMap>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
delete from LL.SYS_USER_ROLE_RS
where ID = #{id,jdbcType=DECIMAL}
</delete>
<insert
id=
"insert"
parameterType=
"com.bsoft.api.model.SysUserRoleRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
<selectKey
keyProperty=
"id"
order=
"AFTER"
resultType=
"java.lang.Long"
>
select SEQ_SYS_USER_ROLE_RS_ID.nextval from dual
</selectKey>
insert into LL.SYS_USER_ROLE_RS (CREATE_DATE, CREATE_USERID, STATE,
USER_ID, ROLE_ID)
values (#{createDate,jdbcType=TIMESTAMP}, #{createUserid,jdbcType=DECIMAL}, #{state,jdbcType=DECIMAL},
#{userId,jdbcType=DECIMAL}, #{roleId,jdbcType=DECIMAL})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bsoft.api.model.SysUserRoleRs"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
update LL.SYS_USER_ROLE_RS
set CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
CREATE_USERID = #{createUserid,jdbcType=DECIMAL},
STATE = #{state,jdbcType=DECIMAL},
USER_ID = #{userId,jdbcType=DECIMAL},
ROLE_ID = #{roleId,jdbcType=DECIMAL}
where ID = #{id,jdbcType=DECIMAL}
</update>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, ROLE_ID
from LL.SYS_USER_ROLE_RS
where ID = #{id,jdbcType=DECIMAL}
</select>
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Tue Oct 22 14:44:12 CST 2019.
-->
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, ROLE_ID
from LL.SYS_USER_ROLE_RS
</select>
<select
id=
"selectRoleByUser"
resultMap=
"BaseResultMap"
>
select ID, CREATE_DATE, CREATE_USERID, STATE, USER_ID, ROLE_ID
from LL.SYS_USER_ROLE_RS
where USER_ID=#{userId,jdbcType=DECIMAL}
</select>
</mapper>
\ No newline at end of file
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