Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
education
Project
Project
Details
Activity
Releases
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
李丛阳
education
Commits
b07b3c4b
Commit
b07b3c4b
authored
Jan 16, 2018
by
YangZhaoJun1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
92349e54
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
236 additions
and
255 deletions
+236
-255
TExamDetailRepository.java
...rcisoft/business/texaminfo/dao/TExamDetailRepository.java
+29
-0
TExamDetail.java
...va/org/rcisoft/business/texaminfo/entity/TExamDetail.java
+41
-0
TPaperDetailRepository.java
...g/rcisoft/business/tpaper/dao/TPaperDetailRepository.java
+1
-1
TPaperSectionRepository.java
.../rcisoft/business/tpaper/dao/TPaperSectionRepository.java
+29
-0
TPaperDetail.java
...java/org/rcisoft/business/tpaper/entity/TPaperDetail.java
+1
-1
TPaperSection.java
...ava/org/rcisoft/business/tpaper/entity/TPaperSection.java
+33
-0
TPaperDetailController.java
...iness/tpaperdetail/controller/TPaperDetailController.java
+0
-101
TPaperDetailService.java
...ft/business/tpaperdetail/service/TPaperDetailService.java
+0
-53
TPaperDetailServiceImpl.java
...ss/tpaperdetail/service/impl/TPaperDetailServiceImpl.java
+0
-99
TQuestionOptionsRepository.java
...ft/business/tquestion/dao/TQuestionOptionsRepository.java
+29
-0
TQuestionOptions.java
...g/rcisoft/business/tquestion/entity/TQuestionOptions.java
+33
-0
TExamDetailMapper.xml
...es/mapper/business/texaminfo/mapper/TExamDetailMapper.xml
+16
-0
TPaperDetailMapper.xml
...rces/mapper/business/tpaper/mapper/TPaperDetailMapper.xml
+0
-0
TPaperSectionMapper.xml
...ces/mapper/business/tpaper/mapper/TPaperSectionMapper.xml
+12
-0
TQuestionOptionsMapper.xml
...pper/business/tquestion/mapper/TQuestionOptionsMapper.xml
+12
-0
No files found.
src/main/java/org/rcisoft/business/texaminfo/dao/TExamDetailRepository.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
texaminfo
.
dao
;
import
org.rcisoft.core.base.BaseMapper
;
import
org.rcisoft.business.texamdetail.entity.TExamDetail
;
import
org.apache.ibatis.annotations.ResultMap
;
import
org.apache.ibatis.annotations.Select
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Repository
public
interface
TExamDetailRepository
extends
BaseMapper
<
TExamDetail
>
{
/**
* 分页查询 tExamDetail
*
*/
@Select
(
"<script>select * from t_exam_detail where 1=1 "
+
"<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if>' "
+
"<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if>' "
+
"</script>"
)
@ResultMap
(
value
=
"BaseResultMap"
)
List
<
TExamDetail
>
queryTExamDetails
(
TExamDetail
tExamDetail
);
}
src/main/java/org/rcisoft/business/texaminfo/entity/TExamDetail.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
texaminfo
.
entity
;
import
lombok.*
;
import
org.rcisoft.core.entity.IdEntity
;
import
javax.persistence.*
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
@Table
(
name
=
"t_exam_detail"
)
public
class
TExamDetail
extends
IdEntity
<
TExamDetail
>
{
private
String
pId
;
private
String
eId
;
private
String
qId
;
private
String
uId
;
private
String
uAnswer
;
private
String
qtype
;
private
Float
pScore
;
}
src/main/java/org/rcisoft/business/tpaper
detail
/dao/TPaperDetailRepository.java
→
src/main/java/org/rcisoft/business/tpaper/dao/TPaperDetailRepository.java
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tpaper
detail
.
dao
;
package
org
.
rcisoft
.
business
.
tpaper
.
dao
;
import
org.rcisoft.core.base.BaseMapper
;
import
org.rcisoft.business.tpaperdetail.entity.TPaperDetail
;
...
...
src/main/java/org/rcisoft/business/tpaper/dao/TPaperSectionRepository.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tpaper
.
dao
;
import
org.rcisoft.core.base.BaseMapper
;
import
org.rcisoft.business.tpapersection.entity.TPaperSection
;
import
org.apache.ibatis.annotations.ResultMap
;
import
org.apache.ibatis.annotations.Select
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Repository
public
interface
TPaperSectionRepository
extends
BaseMapper
<
TPaperSection
>
{
/**
* 分页查询 tPaperSection
*
*/
@Select
(
"<script>select * from t_paper_section where 1=1 "
+
"<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if>' "
+
"<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if>' "
+
"</script>"
)
@ResultMap
(
value
=
"BaseResultMap"
)
List
<
TPaperSection
>
queryTPaperSections
(
TPaperSection
tPaperSection
);
}
src/main/java/org/rcisoft/business/tpaper
detail
/entity/TPaperDetail.java
→
src/main/java/org/rcisoft/business/tpaper/entity/TPaperDetail.java
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tpaper
detail
.
entity
;
package
org
.
rcisoft
.
business
.
tpaper
.
entity
;
import
lombok.*
;
...
...
src/main/java/org/rcisoft/business/tpaper/entity/TPaperSection.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tpaper
.
entity
;
import
lombok.*
;
import
org.rcisoft.core.entity.IdEntity
;
import
javax.persistence.*
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
@Table
(
name
=
"t_paper_section"
)
public
class
TPaperSection
extends
IdEntity
<
TPaperSection
>
{
private
String
pId
;
private
String
sdesc
;
private
Integer
sorder
;
}
src/main/java/org/rcisoft/business/tpaperdetail/controller/TPaperDetailController.java
deleted
100644 → 0
View file @
92349e54
package
org
.
rcisoft
.
business
.
tpaperdetail
.
controller
;
/*固定导入*/
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParams
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.validation.BindingResult
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.rcisoft.core.result.Result
;
import
org.rcisoft.core.result.ResultServiceEnums
;
import
org.rcisoft.core.model.PersistModel
;
import
org.rcisoft.core.constant.MessageConstant
;
import
org.rcisoft.common.controller.PaginationController
;
import
org.rcisoft.core.util.UserUtil
;
import
org.rcisoft.common.model.GridModel
;
import
org.rcisoft.core.exception.ServiceException
;
import
javax.validation.Valid
;
import
org.rcisoft.business.tpaperdetail.entity.TPaperDetail
;
import
org.rcisoft.business.tpaperdetail.service.TPaperDetailService
;
import
java.util.List
;
/**
* Created by yangzhaojun on 2018-1-15 19:49:07.
*/
@RestController
@RequestMapping
(
"/t/paper/detail"
)
public
class
TPaperDetailController
extends
PaginationController
<
TPaperDetail
>
{
@Autowired
private
TPaperDetailService
tPaperDetailServiceImpl
;
@ApiOperation
(
value
=
"添加"
,
notes
=
"添加"
)
//@ApiImplicitParams({@ApiImplicitParam(name = "businessId", value = "businessId", required = false, dataType = "varchar")})
@PostMapping
public
Result
add
(
@Valid
TPaperDetail
tPaperDetail
,
BindingResult
bindingResult
)
{
if
(
bindingResult
.
hasErrors
())
{
throw
new
ServiceException
(
ResultServiceEnums
.
PARAMETER_ERROR
.
getCode
(),
bindingResult
.
getFieldError
().
getDefaultMessage
());
}
tPaperDetail
.
setToken
(
getToken
());
PersistModel
data
=
tPaperDetailServiceImpl
.
save
(
tPaperDetail
);
return
Result
.
builder
(
data
,
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
MessageConstant
.
MESSAGE_ALERT_ERROR
,
tPaperDetail
);
}
@ApiOperation
(
value
=
"逻辑删除"
,
notes
=
"逻辑删除"
)
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
"id"
,
value
=
"id"
,
required
=
false
,
dataType
=
"varchar"
)})
@DeleteMapping
(
"/{id:\\d+}"
)
public
Result
delete
(
@PathVariable
String
id
)
{
TPaperDetail
tPaperDetail
=
new
TPaperDetail
();
tPaperDetail
.
setBusinessId
(
id
);
tPaperDetail
.
setToken
(
getToken
());
PersistModel
data
=
tPaperDetailServiceImpl
.
remove
(
tPaperDetail
);
return
Result
.
builder
(
data
,
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
MessageConstant
.
MESSAGE_ALERT_ERROR
,
id
);
}
@ApiOperation
(
value
=
"修改"
,
notes
=
"修改"
)
@ApiImplicitParams
({
@ApiImplicitParam
(
name
=
"businessId"
,
value
=
"businessId"
,
required
=
false
,
dataType
=
"varchar"
)})
@PutMapping
(
"/{id:\\d+}"
)
public
Result
update
(
@Valid
TPaperDetail
tPaperDetail
,
BindingResult
bindingResult
)
{
if
(
bindingResult
.
hasErrors
())
{
throw
new
ServiceException
(
ResultServiceEnums
.
PARAMETER_ERROR
.
getCode
(),
bindingResult
.
getFieldError
().
getDefaultMessage
());
}
tPaperDetail
.
setToken
(
getToken
());
PersistModel
data
=
tPaperDetailServiceImpl
.
merge
(
tPaperDetail
);
return
Result
.
builder
(
data
,
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
MessageConstant
.
MESSAGE_ALERT_ERROR
,
tPaperDetail
);
}
@ApiOperation
(
value
=
"查看单 "
,
notes
=
"查看单 "
)
@GetMapping
(
"/{id:\\d+}"
)
public
Result
detail
(
@PathVariable
String
id
)
{
return
Result
.
builder
(
new
PersistModel
(
1
),
MessageConstant
.
MESSAGE_ALERT_SUCCESS
,
MessageConstant
.
MESSAGE_ALERT_ERROR
,
tPaperDetailServiceImpl
.
findById
(
id
));
}
@ApiOperation
(
value
=
"查看 集合"
,
notes
=
"查看单 集合"
)
@GetMapping
(
value
=
"/queryTPaperDetailByPagination"
)
public
GridModel
listByPagination
(
TPaperDetail
tPaperDetail
)
{
tPaperDetail
.
setCreateBy
(
UserUtil
.
getUserInfoProp
(
getToken
(),
UserUtil
.
USER_ID
));
tPaperDetailServiceImpl
.
findAllByPagination
(
getPaginationUtility
(),
tPaperDetail
);
return
getGridModelResponse
();
}
}
src/main/java/org/rcisoft/business/tpaperdetail/service/TPaperDetailService.java
deleted
100644 → 0
View file @
92349e54
package
org
.
rcisoft
.
business
.
tpaperdetail
.
service
;
import
org.rcisoft.business.tpaperdetail.entity.TPaperDetail
;
import
org.rcisoft.core.model.PersistModel
;
import
org.rcisoft.core.aop.PageUtil
;
import
java.util.List
;
/**
* Created by yangzhaojun on 2018-1-15 19:49:07.
*/
public
interface
TPaperDetailService
{
/**
* 保存
* @param tPaperDetail
* @return
*/
PersistModel
save
(
TPaperDetail
tPaperDetail
);
/**
* 逻辑删除
* @param tPaperDetail
* @return
*/
PersistModel
remove
(
TPaperDetail
tPaperDetail
);
/**
* 修改
* @param tPaperDetail
* @return
*/
PersistModel
merge
(
TPaperDetail
tPaperDetail
);
/**
* 根据id查询
* @param id
* @return
*/
TPaperDetail
findById
(
String
id
);
/**
* 分页查询
* @param tPaperDetail
* @return
*/
List
<
TPaperDetail
>
findAllByPagination
(
PageUtil
<
TPaperDetail
>
paginationUtility
,
TPaperDetail
tPaperDetail
);
}
src/main/java/org/rcisoft/business/tpaperdetail/service/impl/TPaperDetailServiceImpl.java
deleted
100644 → 0
View file @
92349e54
package
org
.
rcisoft
.
business
.
tpaperdetail
.
service
.
impl
;
import
org.rcisoft.core.util.UserUtil
;
import
org.rcisoft.core.aop.PageUtil
;
import
org.rcisoft.core.model.PersistModel
;
import
org.rcisoft.business.tpaperdetail.dao.TPaperDetailRepository
;
import
org.rcisoft.business.tpaperdetail.entity.TPaperDetail
;
import
org.rcisoft.business.tpaperdetail.service.TPaperDetailService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Isolation
;
import
org.springframework.transaction.annotation.Propagation
;
import
org.springframework.transaction.annotation.Transactional
;
import
java.util.List
;
import
lombok.extern.slf4j.Slf4j
;
/**
* Created by yangzhaojun on 2018-1-15 19:49:07.
*/
@Service
@Transactional
(
readOnly
=
true
,
propagation
=
Propagation
.
NOT_SUPPORTED
)
@Slf4j
public
class
TPaperDetailServiceImpl
implements
TPaperDetailService
{
@Autowired
private
TPaperDetailRepository
tPaperDetailRepository
;
/**
* 保存 tPaperDetail
* @param tPaperDetail
* @return
*/
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
DEFAULT
)
@Override
public
PersistModel
save
(
TPaperDetail
tPaperDetail
){
tPaperDetail
.
setCommonBusinessId
();
//增加操作
UserUtil
.
setCurrentPersistOperation
(
tPaperDetail
);
int
line
=
tPaperDetailRepository
.
insertSelective
(
tPaperDetail
);
log
.
info
(
UserUtil
.
getUserInfoProp
(
tPaperDetail
.
getToken
(),
UserUtil
.
USER_USERNAME
)+
"新增了ID为"
+
tPaperDetail
.
getBusinessId
()+
"的信息"
);
return
new
PersistModel
(
line
);
}
/**
* 逻辑删除
* @param tPaperDetail
* @return
*/
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
DEFAULT
)
@Override
public
PersistModel
remove
(
TPaperDetail
tPaperDetail
){
UserUtil
.
setCurrentMergeOperation
(
tPaperDetail
);
int
line
=
tPaperDetailRepository
.
logicalDelete
(
tPaperDetail
);
log
.
info
(
UserUtil
.
getUserInfoProp
(
tPaperDetail
.
getToken
(),
UserUtil
.
USER_USERNAME
)+
"逻辑删除了ID为"
+
tPaperDetail
.
getBusinessId
()+
"的信息"
);
return
new
PersistModel
(
line
);
}
/**
* 修改 tPaperDetail
* @param tPaperDetail
* @return
*/
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
DEFAULT
)
@Override
public
PersistModel
merge
(
TPaperDetail
tPaperDetail
){
UserUtil
.
setCurrentMergeOperation
(
tPaperDetail
);
int
line
=
tPaperDetailRepository
.
updateByPrimaryKeySelective
(
tPaperDetail
);
log
.
info
(
UserUtil
.
getUserInfoProp
(
tPaperDetail
.
getToken
(),
UserUtil
.
USER_USERNAME
)+
"修改了ID为"
+
tPaperDetail
.
getBusinessId
()+
"的信息"
);
return
new
PersistModel
(
line
);
}
/**
* 根据id查询 tPaperDetail
* @param id
* @return
*/
public
TPaperDetail
findById
(
String
id
){
return
tPaperDetailRepository
.
selectByPrimaryKey
(
id
);
}
/**
* 分页查询 tPaperDetail
* @param tPaperDetail
* @return
*/
public
List
<
TPaperDetail
>
findAllByPagination
(
PageUtil
<
TPaperDetail
>
paginationUtility
,
TPaperDetail
tPaperDetail
){
return
tPaperDetailRepository
.
queryTPaperDetails
(
tPaperDetail
);
}
}
src/main/java/org/rcisoft/business/tquestion/dao/TQuestionOptionsRepository.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tquestion
.
dao
;
import
org.rcisoft.core.base.BaseMapper
;
import
org.rcisoft.business.tquestionoptions.entity.TQuestionOptions
;
import
org.apache.ibatis.annotations.ResultMap
;
import
org.apache.ibatis.annotations.Select
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Repository
public
interface
TQuestionOptionsRepository
extends
BaseMapper
<
TQuestionOptions
>
{
/**
* 分页查询 tQuestionOptions
*
*/
@Select
(
"<script>select * from t_question_options where 1=1 "
+
"<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if>' "
+
"<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if>' "
+
"</script>"
)
@ResultMap
(
value
=
"BaseResultMap"
)
List
<
TQuestionOptions
>
queryTQuestionOptionss
(
TQuestionOptions
tQuestionOptions
);
}
src/main/java/org/rcisoft/business/tquestion/entity/TQuestionOptions.java
0 → 100644
View file @
b07b3c4b
package
org
.
rcisoft
.
business
.
tquestion
.
entity
;
import
lombok.*
;
import
org.rcisoft.core.entity.IdEntity
;
import
javax.persistence.*
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
/**
* Created with yangzhaojun on 2018-1-15 19:49:07.
*/
@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
@Table
(
name
=
"t_question_options"
)
public
class
TQuestionOptions
extends
IdEntity
<
TQuestionOptions
>
{
private
String
qid
;
private
String
alias
;
private
String
desc
;
}
src/main/resources/mapper/business/texaminfo/mapper/TExamDetailMapper.xml
0 → 100644
View file @
b07b3c4b
<?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=
"org.rcisoft.business.texamdetail.dao.TExamDetailRepository"
>
<resultMap
id=
"BaseResultMap"
type=
"org.rcisoft.business.texamdetail.entity.TExamDetail"
>
<id
column=
"business_id"
jdbcType=
"VARCHAR"
property=
"businessId"
/>
<result
column=
"p_id"
jdbcType=
"VARCHAR"
property=
"pId"
/>
<result
column=
"e_id"
jdbcType=
"VARCHAR"
property=
"eId"
/>
<result
column=
"q_id"
jdbcType=
"VARCHAR"
property=
"qId"
/>
<result
column=
"u_id"
jdbcType=
"VARCHAR"
property=
"uId"
/>
<result
column=
"u_answer"
jdbcType=
"VARCHAR"
property=
"uAnswer"
/>
<result
column=
"qtype"
jdbcType=
"VARCHAR"
property=
"qtype"
/>
<result
column=
"p_score"
jdbcType=
"FLOAT"
property=
"pScore"
/>
</resultMap>
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
</mapper>
\ No newline at end of file
src/main/resources/mapper/business/tpaper
detail
/mapper/TPaperDetailMapper.xml
→
src/main/resources/mapper/business/tpaper/mapper/TPaperDetailMapper.xml
View file @
b07b3c4b
File moved
src/main/resources/mapper/business/tpaper/mapper/TPaperSectionMapper.xml
0 → 100644
View file @
b07b3c4b
<?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=
"org.rcisoft.business.tpapersection.dao.TPaperSectionRepository"
>
<resultMap
id=
"BaseResultMap"
type=
"org.rcisoft.business.tpapersection.entity.TPaperSection"
>
<id
column=
"business_id"
jdbcType=
"VARCHAR"
property=
"businessId"
/>
<result
column=
"p_id"
jdbcType=
"VARCHAR"
property=
"pId"
/>
<result
column=
"sdesc"
jdbcType=
"VARCHAR"
property=
"sdesc"
/>
<result
column=
"sorder"
jdbcType=
"INTEGER"
property=
"sorder"
/>
</resultMap>
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
</mapper>
\ No newline at end of file
src/main/resources/mapper/business/tquestion/mapper/TQuestionOptionsMapper.xml
0 → 100644
View file @
b07b3c4b
<?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=
"org.rcisoft.business.tquestionoptions.dao.TQuestionOptionsRepository"
>
<resultMap
id=
"BaseResultMap"
type=
"org.rcisoft.business.tquestionoptions.entity.TQuestionOptions"
>
<id
column=
"business_id"
jdbcType=
"VARCHAR"
property=
"businessId"
/>
<result
column=
"qid"
jdbcType=
"VARCHAR"
property=
"qid"
/>
<result
column=
"alias"
jdbcType=
"VARCHAR"
property=
"alias"
/>
<result
column=
"desc"
jdbcType=
"VARCHAR"
property=
"desc"
/>
</resultMap>
<!--<cache type="${corePackag!}.util.RedisCache"/>-->
</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