初始化v_0.0.2版本代码
parent
339b0cdb0d
commit
43fdbb89db
@ -0,0 +1,48 @@
|
||||
package com.supervision.pdfqaserver.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.FieldFill;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 领域类别表
|
||||
* @TableName domain_category
|
||||
*/
|
||||
@TableName(value ="domain_category")
|
||||
@Data
|
||||
public class DomainCategory implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 行业分类
|
||||
*/
|
||||
private String industryName;
|
||||
|
||||
/**
|
||||
* 父级id
|
||||
*/
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package com.supervision.pdfqaserver.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 实体关系属性表
|
||||
* @TableName er_attribute
|
||||
*/
|
||||
@TableName(value ="er_attribute")
|
||||
@Data
|
||||
public class ErAttribute implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 领域分类id
|
||||
*/
|
||||
private String domainMetadataId;
|
||||
|
||||
/**
|
||||
* 属性名
|
||||
*/
|
||||
private String erName;
|
||||
|
||||
/**
|
||||
* 属性值类型
|
||||
*/
|
||||
private String attrName;
|
||||
|
||||
/**
|
||||
* 属性值类型
|
||||
*/
|
||||
private String attrValueType;
|
||||
|
||||
/**
|
||||
* 节点 1 关系 2
|
||||
*/
|
||||
private String erType;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.supervision.pdfqaserver.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName intention
|
||||
*/
|
||||
@TableName(value ="intention")
|
||||
@Data
|
||||
public class Intention implements Serializable {
|
||||
/**
|
||||
* 意图表
|
||||
*/
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
private String digest;
|
||||
|
||||
/**
|
||||
* 描述详情
|
||||
*/
|
||||
private String desc;
|
||||
|
||||
/**
|
||||
* 领域分类id
|
||||
*/
|
||||
private String domainCategoryId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package com.supervision.pdfqaserver.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName intention_domain_metadata
|
||||
*/
|
||||
@TableName(value ="intention_domain_metadata")
|
||||
@Data
|
||||
public class IntentionDomainMetadata implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 意图id
|
||||
*/
|
||||
private String intentionId;
|
||||
|
||||
/**
|
||||
* 领域元数据id
|
||||
*/
|
||||
private String domainMetadataId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package com.supervision.pdfqaserver.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName intention_truncation
|
||||
*/
|
||||
@TableName(value ="intention_truncation")
|
||||
@Data
|
||||
public class IntentionTruncation implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 意图id
|
||||
*/
|
||||
private String intentionId;
|
||||
|
||||
/**
|
||||
* 片段id
|
||||
*/
|
||||
private String truncateId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT_UPDATE)
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.supervision.pdfqaserver.mapper;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.DomainCategory;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【domain_category(领域类别表)】的数据库操作Mapper
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
* @Entity com.supervision.pdfqaserver.domain.DomainCategory
|
||||
*/
|
||||
public interface DomainCategoryMapper extends BaseMapper<DomainCategory> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.supervision.pdfqaserver.mapper;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.ErAttribute;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【er_attribute(实体关系属性表)】的数据库操作Mapper
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
* @Entity com.supervision.pdfqaserver.domain.ErAttribute
|
||||
*/
|
||||
public interface ErAttributeMapper extends BaseMapper<ErAttribute> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.supervision.pdfqaserver.mapper;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.IntentionDomainMetadata;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_domain_metadata】的数据库操作Mapper
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
* @Entity com.supervision.pdfqaserver.domain.IntentionDomainMetadata
|
||||
*/
|
||||
public interface IntentionDomainMetadataMapper extends BaseMapper<IntentionDomainMetadata> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.supervision.pdfqaserver.mapper;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.Intention;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention】的数据库操作Mapper
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
* @Entity com.supervision.pdfqaserver.domain.Intention
|
||||
*/
|
||||
public interface IntentionMapper extends BaseMapper<Intention> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.supervision.pdfqaserver.mapper;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.IntentionTruncation;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_truncation】的数据库操作Mapper
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
* @Entity com.supervision.pdfqaserver.domain.IntentionTruncation
|
||||
*/
|
||||
public interface IntentionTruncationMapper extends BaseMapper<IntentionTruncation> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,13 @@
|
||||
package com.supervision.pdfqaserver.service;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.DomainCategory;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【domain_category(领域类别表)】的数据库操作Service
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
public interface DomainCategoryService extends IService<DomainCategory> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.supervision.pdfqaserver.service;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.ErAttribute;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【er_attribute(实体关系属性表)】的数据库操作Service
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
public interface ErAttributeService extends IService<ErAttribute> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.supervision.pdfqaserver.service;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.IntentionDomainMetadata;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_domain_metadata】的数据库操作Service
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
public interface IntentionDomainMetadataService extends IService<IntentionDomainMetadata> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.supervision.pdfqaserver.service;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.Intention;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention】的数据库操作Service
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
public interface IntentionService extends IService<Intention> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.supervision.pdfqaserver.service;
|
||||
|
||||
import com.supervision.pdfqaserver.domain.IntentionTruncation;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_truncation】的数据库操作Service
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
public interface IntentionTruncationService extends IService<IntentionTruncation> {
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package com.supervision.pdfqaserver.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.supervision.pdfqaserver.domain.DomainCategory;
|
||||
import com.supervision.pdfqaserver.service.DomainCategoryService;
|
||||
import com.supervision.pdfqaserver.mapper.DomainCategoryMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【domain_category(领域类别表)】的数据库操作Service实现
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
@Service
|
||||
public class DomainCategoryServiceImpl extends ServiceImpl<DomainCategoryMapper, DomainCategory>
|
||||
implements DomainCategoryService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
package com.supervision.pdfqaserver.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.supervision.pdfqaserver.domain.ErAttribute;
|
||||
import com.supervision.pdfqaserver.service.ErAttributeService;
|
||||
import com.supervision.pdfqaserver.mapper.ErAttributeMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【er_attribute(实体关系属性表)】的数据库操作Service实现
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
@Service
|
||||
public class ErAttributeServiceImpl extends ServiceImpl<ErAttributeMapper, ErAttribute>
|
||||
implements ErAttributeService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
package com.supervision.pdfqaserver.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.supervision.pdfqaserver.domain.IntentionDomainMetadata;
|
||||
import com.supervision.pdfqaserver.service.IntentionDomainMetadataService;
|
||||
import com.supervision.pdfqaserver.mapper.IntentionDomainMetadataMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_domain_metadata】的数据库操作Service实现
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
@Service
|
||||
public class IntentionDomainMetadataServiceImpl extends ServiceImpl<IntentionDomainMetadataMapper, IntentionDomainMetadata>
|
||||
implements IntentionDomainMetadataService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
package com.supervision.pdfqaserver.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.supervision.pdfqaserver.domain.Intention;
|
||||
import com.supervision.pdfqaserver.service.IntentionService;
|
||||
import com.supervision.pdfqaserver.mapper.IntentionMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention】的数据库操作Service实现
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
@Service
|
||||
public class IntentionServiceImpl extends ServiceImpl<IntentionMapper, Intention>
|
||||
implements IntentionService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
package com.supervision.pdfqaserver.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.supervision.pdfqaserver.domain.IntentionTruncation;
|
||||
import com.supervision.pdfqaserver.service.IntentionTruncationService;
|
||||
import com.supervision.pdfqaserver.mapper.IntentionTruncationMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【intention_truncation】的数据库操作Service实现
|
||||
* @createDate 2025-05-14 15:23:54
|
||||
*/
|
||||
@Service
|
||||
public class IntentionTruncationServiceImpl extends ServiceImpl<IntentionTruncationMapper, IntentionTruncation>
|
||||
implements IntentionTruncationService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,19 @@
|
||||
<?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.supervision.pdfqaserver.mapper.DomainCategoryMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.supervision.pdfqaserver.domain.DomainCategory">
|
||||
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="industryName" column="industry_name" jdbcType="VARCHAR"/>
|
||||
<result property="parentId" column="parent_id" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,industry_name,parent_id,
|
||||
create_time,update_time
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,24 @@
|
||||
<?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.supervision.pdfqaserver.mapper.ErAttributeMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.supervision.pdfqaserver.domain.ErAttribute">
|
||||
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="domainMetadataId" column="domain_metadata_id" jdbcType="VARCHAR"/>
|
||||
<result property="erName" column="er_name" jdbcType="VARCHAR"/>
|
||||
<result property="attrName" column="attr_name" jdbcType="VARCHAR"/>
|
||||
<result property="attrValueType" column="attr_value_type" jdbcType="VARCHAR"/>
|
||||
<result property="erType" column="er_type" jdbcType="VARCHAR"/>
|
||||
<result property="parentId" column="parent_id" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,domain_metadata_id,er_name,
|
||||
attr_name,attr_value_type,er_type,
|
||||
parent_id,create_time,update_time
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,19 @@
|
||||
<?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.supervision.pdfqaserver.mapper.IntentionDomainMetadataMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.supervision.pdfqaserver.domain.IntentionDomainMetadata">
|
||||
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="intentionId" column="intention_id" jdbcType="VARCHAR"/>
|
||||
<result property="domainMetadataId" column="domain_metadata_id" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,intention_id,domain_metadata_id,
|
||||
create_time,update_time
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,20 @@
|
||||
<?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.supervision.pdfqaserver.mapper.IntentionMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.supervision.pdfqaserver.domain.Intention">
|
||||
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="digest" column="digest" jdbcType="VARCHAR"/>
|
||||
<result property="desc" column="desc" jdbcType="VARCHAR"/>
|
||||
<result property="domainCategoryId" column="domain_category_id" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,digest,desc,
|
||||
domain_category_id,create_time,update_time
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,19 @@
|
||||
<?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.supervision.pdfqaserver.mapper.IntentionTruncationMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.supervision.pdfqaserver.domain.IntentionTruncation">
|
||||
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="intentionId" column="intention_id" jdbcType="VARCHAR"/>
|
||||
<result property="truncateId" column="truncate_id" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,intention_id,truncate_id,
|
||||
create_time,update_time
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue