评价相关操作类
parent
362d1fa353
commit
b86c064232
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluateDetailEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SupEvaluateDetailMapper extends BaseMapper<SupEvaluateDetailEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluateEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SupEvaluateMapper extends BaseMapper<SupEvaluateEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluatePlanDetailEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SupEvaluatePlanDetailMapper extends BaseMapper<SupEvaluatePlanDetailEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluatePlanEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SupEvaluatePlanMapper extends BaseMapper<SupEvaluatePlanEntity> {
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
package com.glxp.api.entity.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
@ApiModel(value="com-glxp-api-entity-basic-SupEvaluateDetail")
|
||||
@Data
|
||||
@TableName(value = "sup_evaluate_detail")
|
||||
public class SupEvaluateDetailEntity implements Serializable {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@ApiModelProperty(value="")
|
||||
private Integer id;
|
||||
|
||||
@TableField(value = "evaluateId")
|
||||
@ApiModelProperty(value="")
|
||||
private Integer evaluateId;
|
||||
|
||||
/**
|
||||
* 方案明细ID
|
||||
*/
|
||||
@TableField(value = "planDetailId")
|
||||
@ApiModelProperty(value="方案明细ID")
|
||||
private Integer planDetailId;
|
||||
|
||||
/**
|
||||
* 评价指标
|
||||
*/
|
||||
@TableField(value = "target")
|
||||
@ApiModelProperty(value="评价指标")
|
||||
private String target;
|
||||
|
||||
/**
|
||||
* 评价指标说明
|
||||
*/
|
||||
@TableField(value = "tarDesc")
|
||||
@ApiModelProperty(value="评价指标说明")
|
||||
private String tarDesc;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
@TableField(value = "weight")
|
||||
@ApiModelProperty(value="权重")
|
||||
private Double weight;
|
||||
|
||||
/**
|
||||
* 评审人
|
||||
*/
|
||||
@TableField(value = "evaluateUser")
|
||||
@ApiModelProperty(value="评审人")
|
||||
private String evaluateUser;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(value = "createTime")
|
||||
@ApiModelProperty(value="创建时间")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(value = "updateTime")
|
||||
@ApiModelProperty(value="更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField(value = "remark")
|
||||
@ApiModelProperty(value="备注")
|
||||
private String remark;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
package com.glxp.api.entity.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
@ApiModel(value="com-glxp-api-entity-basic-SupEvaluatePlanDetail")
|
||||
@Data
|
||||
@TableName(value = "sup_evaluate_plan_detail")
|
||||
public class SupEvaluatePlanDetailEntity implements Serializable {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@ApiModelProperty(value="")
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 方案ID
|
||||
*/
|
||||
@TableField(value = "planIdFk")
|
||||
@ApiModelProperty(value="方案ID")
|
||||
private String planIdFk;
|
||||
|
||||
/**
|
||||
* 评价指标
|
||||
*/
|
||||
@TableField(value = "target")
|
||||
@ApiModelProperty(value="评价指标")
|
||||
private String target;
|
||||
|
||||
/**
|
||||
* 指标评分说明
|
||||
*/
|
||||
@TableField(value = "tarDesc")
|
||||
@ApiModelProperty(value="指标评分说明")
|
||||
private String tarDesc;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
@TableField(value = "weight")
|
||||
@ApiModelProperty(value="权重")
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField(value = "`createUser`")
|
||||
@ApiModelProperty(value="创建人")
|
||||
private String createUser;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField(value = "createTime")
|
||||
@ApiModelProperty(value="创建时间")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField(value = "updateUser")
|
||||
@ApiModelProperty(value="更新人")
|
||||
private String updateUser;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(value = "updateTime")
|
||||
@ApiModelProperty(value="更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField(value = "remark")
|
||||
@ApiModelProperty(value="备注")
|
||||
private String remark;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.service.basic;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.basic.SupEvaluateDetailMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluateDetailEntity;
|
||||
@Service
|
||||
public class SupEvaluateDetailService extends ServiceImpl<SupEvaluateDetailMapper, SupEvaluateDetailEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.service.basic;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.basic.SupEvaluatePlanDetailMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluatePlanDetailEntity;
|
||||
@Service
|
||||
public class SupEvaluatePlanDetailService extends ServiceImpl<SupEvaluatePlanDetailMapper, SupEvaluatePlanDetailEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.service.basic;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.entity.basic.SupEvaluatePlanEntity;
|
||||
import com.glxp.api.dao.basic.SupEvaluatePlanMapper;
|
||||
@Service
|
||||
public class SupEvaluatePlanService extends ServiceImpl<SupEvaluatePlanMapper, SupEvaluatePlanEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.service.basic;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.dao.basic.SupEvaluateMapper;
|
||||
import com.glxp.api.entity.basic.SupEvaluateEntity;
|
||||
@Service
|
||||
public class SupEvaluateService extends ServiceImpl<SupEvaluateMapper, SupEvaluateEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
<?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.glxp.api.dao.basic.SupEvaluateDetailMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.SupEvaluateDetailEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sup_evaluate_detail-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="evaluateId" jdbcType="INTEGER" property="evaluateId" />
|
||||
<result column="planDetailId" jdbcType="INTEGER" property="planDetailId" />
|
||||
<result column="target" jdbcType="VARCHAR" property="target" />
|
||||
<result column="tarDesc" jdbcType="VARCHAR" property="tarDesc" />
|
||||
<result column="weight" jdbcType="DOUBLE" property="weight" />
|
||||
<result column="evaluateUser" jdbcType="VARCHAR" property="evaluateUser" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, evaluateId, planDetailId, target, tarDesc, weight, evaluateUser, createTime,
|
||||
updateTime, remark
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,27 @@
|
||||
<?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.glxp.api.dao.basic.SupEvaluateMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.SupEvaluateEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sup_evaluate-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="customerId" jdbcType="BIGINT" property="customerId" />
|
||||
<result column="planIdFk" jdbcType="VARCHAR" property="planIdFk" />
|
||||
<result column="evaluateType" jdbcType="VARCHAR" property="evaluateType" />
|
||||
<result column="users" jdbcType="VARCHAR" property="users" />
|
||||
<result column="adminUser" jdbcType="VARCHAR" property="adminUser" />
|
||||
<result column="expireDate" jdbcType="TIMESTAMP" property="expireDate" />
|
||||
<result column="deptCode" jdbcType="VARCHAR" property="deptCode" />
|
||||
<result column="invCode" jdbcType="VARCHAR" property="invCode" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, customerId, planIdFk, evaluateType, users, adminUser, expireDate, deptCode, invCode,
|
||||
`createUser`, remark, createTime, updateUser, updateTime
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,23 @@
|
||||
<?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.glxp.api.dao.basic.SupEvaluatePlanDetailMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.SupEvaluatePlanDetailEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sup_evaluate_plan_detail-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="planIdFk" jdbcType="VARCHAR" property="planIdFk" />
|
||||
<result column="target" jdbcType="VARCHAR" property="target" />
|
||||
<result column="tarDesc" jdbcType="VARCHAR" property="tarDesc" />
|
||||
<result column="weight" jdbcType="INTEGER" property="weight" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, planIdFk, target, tarDesc, weight, `createUser`, createTime, updateUser, updateTime,
|
||||
remark
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,25 @@
|
||||
<?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.glxp.api.dao.basic.SupEvaluatePlanMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.SupEvaluatePlanEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sup_evaluate_plan-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="code" jdbcType="VARCHAR" property="code" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="type" jdbcType="VARCHAR" property="type" />
|
||||
<result column="deptCode" jdbcType="VARCHAR" property="deptCode" />
|
||||
<result column="invCode" jdbcType="VARCHAR" property="invCode" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="status" jdbcType="TINYINT" property="status" />
|
||||
<result column="createUser" jdbcType="VARCHAR" property="createUser" />
|
||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, code, `name`, `type`, deptCode, invCode, createTime, updateTime, `status`, `createUser`,
|
||||
updateUser, remark
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue