Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
long-tern-care-service
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hubin
long-tern-care-service
Commits
8a882f15
Commit
8a882f15
authored
Apr 29, 2021
by
zhangch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实体类生成
parent
dde5c814
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
303 additions
and
0 deletions
+303
-0
ChCfgAprItemClauseMapper.java
...n/java/com/hungraim/ltc/dao/ChCfgAprItemClauseMapper.java
+12
-0
ChCfgAprItemMapper.java
...rc/main/java/com/hungraim/ltc/dao/ChCfgAprItemMapper.java
+12
-0
ChCfgAprMapper.java
...ce/src/main/java/com/hungraim/ltc/dao/ChCfgAprMapper.java
+12
-0
ChCfgAprItemClauseMapper.xml
...ce/src/main/resources/mapper/ChCfgAprItemClauseMapper.xml
+18
-0
ChCfgAprItemMapper.xml
...-service/src/main/resources/mapper/ChCfgAprItemMapper.xml
+17
-0
ChCfgAprMapper.xml
...ment-service/src/main/resources/mapper/ChCfgAprMapper.xml
+23
-0
ChCfgApr.java
...ava/com/hungraim/ltc/pojo/entity/assessment/ChCfgApr.java
+88
-0
ChCfgAprItem.java
...com/hungraim/ltc/pojo/entity/assessment/ChCfgAprItem.java
+58
-0
ChCfgAprItemClause.java
...ngraim/ltc/pojo/entity/assessment/ChCfgAprItemClause.java
+63
-0
No files found.
assessment/assessment-service/src/main/java/com/hungraim/ltc/dao/ChCfgAprItemClauseMapper.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.hungraim.ltc.pojo.entity.assessment.ChCfgAprItemClause
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.springframework.stereotype.Repository
;
@Mapper
@Repository
public
interface
ChCfgAprItemClauseMapper
extends
BaseMapper
<
ChCfgAprItemClause
>
{
}
\ No newline at end of file
assessment/assessment-service/src/main/java/com/hungraim/ltc/dao/ChCfgAprItemMapper.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.hungraim.ltc.pojo.entity.assessment.ChCfgAprItem
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.springframework.stereotype.Repository
;
@Mapper
@Repository
public
interface
ChCfgAprItemMapper
extends
BaseMapper
<
ChCfgAprItem
>
{
}
\ No newline at end of file
assessment/assessment-service/src/main/java/com/hungraim/ltc/dao/ChCfgAprMapper.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.hungraim.ltc.pojo.entity.assessment.ChCfgApr
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.springframework.stereotype.Repository
;
@Mapper
@Repository
public
interface
ChCfgAprMapper
extends
BaseMapper
<
ChCfgApr
>
{
}
\ No newline at end of file
assessment/assessment-service/src/main/resources/mapper/ChCfgAprItemClauseMapper.xml
0 → 100644
View file @
8a882f15
<?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.hungraim.ltc.dao.ChCfgAprItemClauseMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hungraim.ltc.pojo.entity.assessment.ChCfgAprItemClause"
>
<id
column=
"CLAUSE_ID"
jdbcType=
"DECIMAL"
property=
"clauseId"
/>
<result
column=
"CLAUSE_DESC"
jdbcType=
"VARCHAR"
property=
"clauseDesc"
/>
<result
column=
"CLAUSE_VALUE"
jdbcType=
"DECIMAL"
property=
"clauseValue"
/>
<result
column=
"ITEM_ID"
jdbcType=
"DECIMAL"
property=
"itemId"
/>
<result
column=
"APR_ID"
jdbcType=
"DECIMAL"
property=
"aprId"
/>
<result
column=
"FCD"
jdbcType=
"TIMESTAMP"
property=
"fcd"
/>
<result
column=
"FCU"
jdbcType=
"DECIMAL"
property=
"fcu"
/>
<result
column=
"TASK_SCORE_ID"
jdbcType=
"DECIMAL"
property=
"taskScoreId"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
CLAUSE_ID, CLAUSE_DESC, CLAUSE_VALUE, ITEM_ID, APR_ID, FCD, FCU, TASK_SCORE_ID
</sql>
</mapper>
\ No newline at end of file
assessment/assessment-service/src/main/resources/mapper/ChCfgAprItemMapper.xml
0 → 100644
View file @
8a882f15
<?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.hungraim.ltc.dao.ChCfgAprItemMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hungraim.ltc.pojo.entity.assessment.ChCfgAprItem"
>
<id
column=
"ITEM_ID"
jdbcType=
"DECIMAL"
property=
"itemId"
/>
<result
column=
"ITEM_NAME"
jdbcType=
"VARCHAR"
property=
"itemName"
/>
<result
column=
"MIN_VALUE"
jdbcType=
"DECIMAL"
property=
"minValue"
/>
<result
column=
"MAX_VALUE"
jdbcType=
"DECIMAL"
property=
"maxValue"
/>
<result
column=
"APR_ID"
jdbcType=
"DECIMAL"
property=
"aprId"
/>
<result
column=
"FCD"
jdbcType=
"TIMESTAMP"
property=
"fcd"
/>
<result
column=
"FCU"
jdbcType=
"DECIMAL"
property=
"fcu"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
ITEM_ID, ITEM_NAME, MIN_VALUE, MAX_VALUE, APR_ID, FCD, FCU
</sql>
</mapper>
\ No newline at end of file
assessment/assessment-service/src/main/resources/mapper/ChCfgAprMapper.xml
0 → 100644
View file @
8a882f15
<?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.hungraim.ltc.dao.ChCfgAprMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hungraim.ltc.pojo.entity.assessment.ChCfgApr"
>
<id
column=
"APR_ID"
jdbcType=
"DECIMAL"
property=
"aprId"
/>
<result
column=
"ORGAN_ID"
jdbcType=
"VARCHAR"
property=
"organId"
/>
<result
column=
"ESTIMATE_NAME"
jdbcType=
"VARCHAR"
property=
"estimateName"
/>
<result
column=
"REMARK"
jdbcType=
"VARCHAR"
property=
"remark"
/>
<result
column=
"STATUS"
jdbcType=
"DECIMAL"
property=
"status"
/>
<result
column=
"DEFINE_EMP"
jdbcType=
"DECIMAL"
property=
"defineEmp"
/>
<result
column=
"EFF_TIME"
jdbcType=
"TIMESTAMP"
property=
"effTime"
/>
<result
column=
"END_EMP"
jdbcType=
"DECIMAL"
property=
"endEmp"
/>
<result
column=
"END_TIME"
jdbcType=
"TIMESTAMP"
property=
"endTime"
/>
<result
column=
"FCD"
jdbcType=
"TIMESTAMP"
property=
"fcd"
/>
<result
column=
"FCU"
jdbcType=
"DECIMAL"
property=
"fcu"
/>
<result
column=
"LCD"
jdbcType=
"TIMESTAMP"
property=
"lcd"
/>
<result
column=
"LCU"
jdbcType=
"DECIMAL"
property=
"lcu"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
APR_ID, ORGAN_ID, ESTIMATE_NAME, REMARK, "STATUS", DEFINE_EMP, EFF_TIME, END_EMP,
END_TIME, FCD, FCU, LCD, LCU
</sql></mapper>
\ No newline at end of file
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/assessment/ChCfgApr.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
assessment
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.KeySequence
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* CH_CFG_APR
* @author
*/
@Data
@TableName
(
"CH_CFG_APR"
)
@KeySequence
(
"SEQ_CH_CFG_APR"
)
public
class
ChCfgApr
implements
Serializable
{
/**
* 鉴定配置id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
aprId
;
/**
* 机构代码
*/
private
String
organId
;
/**
* 鉴定配置名称
*/
private
String
estimateName
;
/**
* 备注
*/
private
String
remark
;
/**
* 状态 未生效:0;已生效:1;已失效:2
*/
private
Short
status
;
/**
* 创建人
*/
private
Long
defineEmp
;
/**
* 创建时间
*/
private
Date
effTime
;
/**
* 终止人
*/
private
Long
endEmp
;
/**
* 终止时间
*/
private
Date
endTime
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
/**
* 末次操作时间
*/
private
Date
lcd
;
/**
* 末次操作人
*/
private
Long
lcu
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/assessment/ChCfgAprItem.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
assessment
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.KeySequence
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* CH_CFG_APR_ITEM
* @author
*/
@Data
@TableName
(
"CH_CFG_APR_ITEM"
)
@KeySequence
(
"SEQ_CH_CFG_APR_ITEM"
)
public
class
ChCfgAprItem
implements
Serializable
{
/**
* 鉴定项目id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
itemId
;
/**
* 鉴定项目名称
*/
private
String
itemName
;
/**
* 最小值
*/
private
Short
minValue
;
/**
* 最大值
*/
private
Short
maxValue
;
/**
* 鉴定配置id
*/
private
Long
aprId
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/assessment/ChCfgAprItemClause.java
0 → 100644
View file @
8a882f15
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
assessment
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.KeySequence
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* CH_CFG_APR_ITEM_CLAUSE
* @author
*/
@Data
@TableName
(
"CH_CFG_APR_ITEM_CLAUSE"
)
@KeySequence
(
"SEQ_CH_CFG_APR_ITEM_CLAUSE"
)
public
class
ChCfgAprItemClause
implements
Serializable
{
/**
* 鉴定明细id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
clauseId
;
/**
* 鉴定明细描述
*/
private
String
clauseDesc
;
/**
* 参考分值
*/
private
Short
clauseValue
;
/**
* 鉴定项目id
*/
private
Long
itemId
;
/**
* 鉴定配置id
*/
private
Long
aprId
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
/**
* 分数对应id
*/
private
Short
taskScoreId
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ 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