BUGFIX: sketchBoard upload checkMd5校验;
TASK: 分类;
This commit is contained in:
18
src/main/resources/mapper/ClassificationMapper.xml
Normal file
18
src/main/resources/mapper/ClassificationMapper.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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.ai.da.mapper.ClassificationMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.ai.da.mapper.entity.Classification">
|
||||
<id column="id" property="id" />
|
||||
<result column="classification_name" property="classificationName" />
|
||||
<result column="type" property="type" />
|
||||
<result column="parent_id" property="parentId" />
|
||||
<result column="user_id" property="userId" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="is_deleted" property="isDeleted" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
17
src/main/resources/mapper/ClassificationRelLibraryMapper.xml
Normal file
17
src/main/resources/mapper/ClassificationRelLibraryMapper.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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.ai.da.mapper.ClassificationRelLibraryMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.ai.da.mapper.entity.ClassificationRelLibrary">
|
||||
<id column="id" property="id" />
|
||||
<result column="classification_id" property="classificationId" />
|
||||
<result column="library_id" property="libraryId" />
|
||||
<result column="user_id" property="userId" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="is_deleted" property="isDeleted" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
@@ -72,6 +72,9 @@ save.sysFile.failed=Save sysFile failed!
|
||||
save.pythonTAllInfo.failed=Save pythonTAllInfo failed!
|
||||
save.collection.failed=Save collection failed!
|
||||
save.designItemDetail.failed=Save designItemDetail failed!
|
||||
|
||||
save.classification.failed=Save classification failed!
|
||||
update.classification.failed=Update classification failed!
|
||||
# 前端传参校验
|
||||
singleOverall.cannot.be.empty=singleOverall cannot be empty!
|
||||
colorBoards.cannot.be.empty=colorBoards cannot be empty!
|
||||
@@ -131,4 +134,8 @@ level1Type.cannot.be.empty=level1Type cannot be empty!
|
||||
regionNum.cannot.be.empty=regionNum cannot be empty!
|
||||
phone.cannot.be.empty=phone cannot be empty!
|
||||
printId.cannot.be.empty=printId cannot be empty!
|
||||
path.cannot.be.empty=Path cannot be empty!
|
||||
path.cannot.be.empty=path cannot be empty!
|
||||
|
||||
classificationName.cannot.be.empty=classificationName cannot be empty!
|
||||
classificationName.already.exists=ClassificationName already exists, please change it!
|
||||
the.classification.you.deleted.has.associated.library=The classification you deleted has associated data, are you sure to delete it!
|
||||
Reference in New Issue
Block a user