Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
|
6effdea50b | 7 months ago |
@ -0,0 +1,30 @@
|
||||
package com.ruoyi.business.enterpriserectification.bo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class TbSafeRuleOneVo {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String levelIndexOne;
|
||||
|
||||
private String levelIndexTwo;
|
||||
|
||||
private String levelIndexThree;
|
||||
|
||||
private String note;
|
||||
|
||||
private Integer levelIndex;
|
||||
|
||||
private List<TbSafeRuleTwoVo> tbSafeRuleTwoVoList;
|
||||
}
|
||||
|
@ -0,0 +1,22 @@
|
||||
package com.ruoyi.business.enterpriserectification.bo;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class TbSafeRuleThreeVo {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String levelIndexOne;
|
||||
|
||||
private String levelIndexTwo;
|
||||
|
||||
private String levelIndexThree;
|
||||
|
||||
private String note;
|
||||
|
||||
private Integer levelIndex;
|
||||
}
|
||||
|
@ -0,0 +1,26 @@
|
||||
package com.ruoyi.business.enterpriserectification.bo;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class TbSafeRuleTwoVo {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String levelIndexOne;
|
||||
|
||||
private String levelIndexTwo;
|
||||
|
||||
private String levelIndexThree;
|
||||
|
||||
private String note;
|
||||
|
||||
private Integer levelIndex;
|
||||
|
||||
private List<TbSafeRuleThreeVo> tbSafeRuleThreeVoList;
|
||||
}
|
||||
|
@ -0,0 +1,98 @@
|
||||
package com.ruoyi.business.enterpriserectification.bo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.system.until.EntiyUntil;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author 杜俊岩
|
||||
* @Date 2024/7/2 19:21
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ApiModel(value="TbSynergism对象", description="整改信息表")
|
||||
public class TbSynergismParmas extends EntiyUntil {
|
||||
|
||||
/**
|
||||
* 清单生成时间
|
||||
*/
|
||||
@ApiModelProperty("清单生成时间")
|
||||
private Date checklistGenerationTime;
|
||||
/**
|
||||
* 整改截止日期
|
||||
*/
|
||||
@ApiModelProperty("整改截止日期")
|
||||
private Date rectificationDeadline;
|
||||
/**
|
||||
* 整改状态
|
||||
*/
|
||||
@Size(max= 50,message="编码长度不能超过50")
|
||||
@ApiModelProperty("整改状态0:已完成;1:整改中;2:未完成")
|
||||
@Length(max= 50,message="编码长度不能超过50")
|
||||
private String rectificationStatus;
|
||||
/**
|
||||
* 管控扣分项
|
||||
*/
|
||||
@Size(max= 255,message="编码长度不能超过255")
|
||||
@ApiModelProperty("异常类型")
|
||||
@Length(max= 255,message="编码长度不能超过255")
|
||||
private String controlDeductionItem;
|
||||
|
||||
/**
|
||||
* 要素异常明细
|
||||
*/
|
||||
@Size(max= 255,message="编码长度不能超过255")
|
||||
@ApiModelProperty("要素异常明细")
|
||||
@Length(max= 255,message="编码长度不能超过255")
|
||||
private String elementAbnormalDetail;
|
||||
/**
|
||||
* 整改结果
|
||||
*/
|
||||
@Size(max= 255,message="编码长度不能超过255")
|
||||
@ApiModelProperty("整改结果0:已完成;1:整改中;2:未完成")
|
||||
@Length(max= 255,message="编码长度不能超过255")
|
||||
private String rectificationResult;
|
||||
|
||||
/**
|
||||
* 整改日期
|
||||
*/
|
||||
@ApiModelProperty("整改日期")
|
||||
private Date updateTime;
|
||||
/**
|
||||
* 0:不活跃;1:活跃
|
||||
*/
|
||||
@Size(max= -1,message="编码长度不能超过-1")
|
||||
@ApiModelProperty("0:不活跃;1:活跃")
|
||||
@Length(max= -1,message="编码长度不能超过-1")
|
||||
private String isActive;
|
||||
/**
|
||||
* 整改结果详情
|
||||
*/
|
||||
@Size(max= 255,message="编码长度不能超过255")
|
||||
@ApiModelProperty("整改结果详情")
|
||||
@Length(max= 255,message="编码长度不能超过255")
|
||||
private String rectificationResultDefult;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date startTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date endTime;
|
||||
@ApiModelProperty("查询风险开始时间")
|
||||
private Date riskStartTime;
|
||||
@ApiModelProperty("查询风险结束时间")
|
||||
private Date riskEndTime;
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbCompanyInfo;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_company_info(企业信息)】的数据库操作Mapper
|
||||
* @createDate 2024-07-01 21:37:46
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbCompanyInfo
|
||||
*/
|
||||
public interface TbCompanyInfoMapper extends BaseMapper<TbCompanyInfo> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScoreDetail;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score_detail(企业统计积分明细)】的数据库操作Mapper
|
||||
* @createDate 2024-07-02 14:06:55
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScoreDetail
|
||||
*/
|
||||
public interface TbSafeCompanyStatisticsScoreDetailMapper extends BaseMapper<TbSafeCompanyStatisticsScoreDetail> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScore;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score(企业统计积分)】的数据库操作Mapper
|
||||
* @createDate 2024-07-02 14:36:31
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScore
|
||||
*/
|
||||
public interface TbSafeCompanyStatisticsScoreMapper extends BaseMapper<TbSafeCompanyStatisticsScore> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeRule;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_rule(平安企业规则名表)】的数据库操作Mapper
|
||||
* @createDate 2024-07-02 11:09:54
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbSafeRule
|
||||
*/
|
||||
public interface TbSafeRuleMapper extends BaseMapper<TbSafeRule> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSpecialCountRecord;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_special_count_record(企业综合指数记录表)】的数据库操作Mapper
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbSpecialCountRecord
|
||||
*/
|
||||
public interface TbSpecialCountRecordMapper extends BaseMapper<TbSpecialCountRecord> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.business.enterpriserectification.mapper;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSynergismEnterpriseSupervision;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_synergism_enterprise_supervision(企业监管表)】的数据库操作Mapper
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
* @Entity com.ruoyi.business.enterpriserectification.pojo.TbSynergismEnterpriseSupervision
|
||||
*/
|
||||
public interface TbSynergismEnterpriseSupervisionMapper extends BaseMapper<TbSynergismEnterpriseSupervision> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,97 @@
|
||||
package com.ruoyi.business.enterpriserectification.pojo;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.Size;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.ruoyi.system.until.EntiyUntil;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
/**
|
||||
* 企业信息
|
||||
* @TableName tb_company_info
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName(value = "tb_company_info")
|
||||
public class TbCompanyInfo extends EntiyUntil {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private Long id;
|
||||
/**
|
||||
* 公司名称
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("公司名称")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String companyName;
|
||||
/**
|
||||
* 公司类型
|
||||
*/
|
||||
@Size(max= -1,message="编码长度不能超过-1")
|
||||
@ApiModelProperty("公司类型")
|
||||
@Length(max= -1,message="编码长度不能超过-1")
|
||||
private String companyType;
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("统一社会信用代码")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String socialCreditCode;
|
||||
/**
|
||||
* 企业性质
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("企业性质")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String companyNature;
|
||||
/**
|
||||
* 成立日期
|
||||
*/
|
||||
@ApiModelProperty("成立日期")
|
||||
private Date establishDate;
|
||||
/**
|
||||
* 营业期限
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("营业期限")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String businessTermDate;
|
||||
/**
|
||||
* 企业登记注册地
|
||||
*/
|
||||
@Size(max= -1,message="编码长度不能超过-1")
|
||||
@ApiModelProperty("企业登记注册地")
|
||||
@Length(max= -1,message="编码长度不能超过-1")
|
||||
private String registerAddress;
|
||||
/**
|
||||
* 企业经营状态
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("企业经营状态")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String businessStatus;
|
||||
/**
|
||||
* 企业法定代表人
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("企业法定代表人")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String legalPerson;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,123 @@
|
||||
package com.ruoyi.business.enterpriserectification.pojo;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.Size;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.ruoyi.system.until.EntiyUntil;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
/**
|
||||
* 企业统计积分
|
||||
* @TableName tb_safe_company_statistics_score
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName(value = "tb_safe_company_statistics_score")
|
||||
public class TbSafeCompanyStatisticsScore extends EntiyUntil {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private Long id;
|
||||
/**
|
||||
* 企业id
|
||||
*/
|
||||
@ApiModelProperty("企业id")
|
||||
private Long companyId;
|
||||
/**
|
||||
* 规则项对应积分
|
||||
*/
|
||||
@ApiModelProperty("规则项对应积分")
|
||||
private Double score;
|
||||
/**
|
||||
* 积分类型 month season year
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("积分类型 month season year")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String scoreType;
|
||||
/**
|
||||
* 积分所属时间 2023-01 2023-03 2023
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("积分所属时间 2023-01 2023-03 2023")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String statisticsDate;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@ApiModelProperty("创建时间")
|
||||
private Date createTime;
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@ApiModelProperty("创建者")
|
||||
private Integer createBy;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@ApiModelProperty("更新时间")
|
||||
private Date updateTime;
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
@ApiModelProperty("更新者")
|
||||
private Integer updateBy;
|
||||
/**
|
||||
* 0:不活跃,1:活跃
|
||||
*/
|
||||
@Size(max= -1,message="编码长度不能超过-1")
|
||||
@ApiModelProperty("0:不活跃,1:活跃")
|
||||
@Length(max= -1,message="编码长度不能超过-1")
|
||||
private String isActive;
|
||||
/**
|
||||
* 扩展字段c1
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("扩展字段c1")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String c1;
|
||||
/**
|
||||
* 扩展字段c2
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("扩展字段c2")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String c2;
|
||||
/**
|
||||
* 扩展字段c3
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("扩展字段c3")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String c3;
|
||||
/**
|
||||
* 扩展字段c4
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("扩展字段c4")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String c4;
|
||||
/**
|
||||
* 扩展字段c5
|
||||
*/
|
||||
@Size(max= 100,message="编码长度不能超过100")
|
||||
@ApiModelProperty("扩展字段c5")
|
||||
@Length(max= 100,message="编码长度不能超过100")
|
||||
private String c5;
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbCompanyInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_company_info(企业信息)】的数据库操作Service
|
||||
* @createDate 2024-07-01 21:37:46
|
||||
*/
|
||||
public interface TbCompanyInfoService extends IService<TbCompanyInfo> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScoreDetail;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score_detail(企业统计积分明细)】的数据库操作Service
|
||||
* @createDate 2024-07-02 14:06:55
|
||||
*/
|
||||
public interface TbSafeCompanyStatisticsScoreDetailService extends IService<TbSafeCompanyStatisticsScoreDetail> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScore;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score(企业统计积分)】的数据库操作Service
|
||||
* @createDate 2024-07-02 14:36:31
|
||||
*/
|
||||
public interface TbSafeCompanyStatisticsScoreService extends IService<TbSafeCompanyStatisticsScore> {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.bo.TbSafeRuleOneVo;
|
||||
import com.ruoyi.business.enterpriserectification.bo.TbSafeRuleTwoVo;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeRule;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_rule(平安企业规则名表)】的数据库操作Service
|
||||
* @createDate 2024-07-02 11:09:54
|
||||
*/
|
||||
public interface TbSafeRuleService extends IService<TbSafeRule> {
|
||||
List<TbSafeRuleOneVo> getRuleOne();
|
||||
|
||||
List<TbSafeRuleTwoVo> getRuleTwo();
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSpecialCountRecord;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_special_count_record(企业综合指数记录表)】的数据库操作Service
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
*/
|
||||
public interface TbSpecialCountRecordService extends IService<TbSpecialCountRecord> {
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.ruoyi.business.enterpriserectification.service;
|
||||
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSynergismEnterpriseSupervision;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_synergism_enterprise_supervision(企业监管表)】的数据库操作Service
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
*/
|
||||
public interface TbSynergismEnterpriseSupervisionService extends IService<TbSynergismEnterpriseSupervision> {
|
||||
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbCompanyInfo;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbCompanyInfoService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbCompanyInfoMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_company_info(企业信息)】的数据库操作Service实现
|
||||
* @createDate 2024-07-01 21:37:46
|
||||
*/
|
||||
@Service
|
||||
public class TbCompanyInfoServiceImpl extends ServiceImpl<TbCompanyInfoMapper, TbCompanyInfo>
|
||||
implements TbCompanyInfoService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,25 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScoreDetail;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbSafeCompanyStatisticsScoreDetailService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbSafeCompanyStatisticsScoreDetailMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score_detail(企业统计积分明细)】的数据库操作Service实现
|
||||
* @createDate 2024-07-02 14:06:55
|
||||
*/
|
||||
@Service
|
||||
@DataSource(value = DataSourceType.SLAVE)
|
||||
public class TbSafeCompanyStatisticsScoreDetailServiceImpl extends ServiceImpl<TbSafeCompanyStatisticsScoreDetailMapper, TbSafeCompanyStatisticsScoreDetail>
|
||||
implements TbSafeCompanyStatisticsScoreDetailService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,25 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScore;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbSafeCompanyStatisticsScoreService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbSafeCompanyStatisticsScoreMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_company_statistics_score(企业统计积分)】的数据库操作Service实现
|
||||
* @createDate 2024-07-02 14:36:31
|
||||
*/
|
||||
@Service
|
||||
@DataSource(value = DataSourceType.SLAVE)
|
||||
public class TbSafeCompanyStatisticsScoreServiceImpl extends ServiceImpl<TbSafeCompanyStatisticsScoreMapper, TbSafeCompanyStatisticsScore>
|
||||
implements TbSafeCompanyStatisticsScoreService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,133 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.bo.TbSafeRuleOneVo;
|
||||
import com.ruoyi.business.enterpriserectification.bo.TbSafeRuleThreeVo;
|
||||
import com.ruoyi.business.enterpriserectification.bo.TbSafeRuleTwoVo;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSafeRule;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbSafeRuleService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbSafeRuleMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import com.ruoyi.system.until.NbConstants;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_safe_rule(平安企业规则名表)】的数据库操作Service实现
|
||||
* @createDate 2024-07-02 11:09:54
|
||||
*/
|
||||
@Service
|
||||
@DataSource(value = DataSourceType.SLAVE)
|
||||
public class TbSafeRuleServiceImpl extends ServiceImpl<TbSafeRuleMapper, TbSafeRule>
|
||||
implements TbSafeRuleService{
|
||||
|
||||
@Override
|
||||
public List<TbSafeRuleOneVo> getRuleOne() {
|
||||
QueryWrapper<TbSafeRule> queryWrapper = Wrappers.query();
|
||||
//查询出所有规则名表
|
||||
List<TbSafeRule> tbSafeRuleList = this.list(queryWrapper);
|
||||
List<TbSafeRuleOneVo> list = new ArrayList<>();
|
||||
if (null == tbSafeRuleList || tbSafeRuleList.size() == 0) {
|
||||
return list;
|
||||
}
|
||||
for (TbSafeRule tbSafeRule : tbSafeRuleList) {
|
||||
if (NbConstants.LEVEL_INDEX_ONE == Integer.parseInt(tbSafeRule.getLevelIndex())) {
|
||||
TbSafeRuleOneVo tbSafeRuleOneVo = new TbSafeRuleOneVo();
|
||||
tbSafeRuleOneVo.setId(tbSafeRule.getId());
|
||||
tbSafeRuleOneVo.setLevelIndex(NbConstants.LEVEL_INDEX_ONE);
|
||||
tbSafeRuleOneVo.setLevelIndexOne(tbSafeRule.getLevelIndexOne());
|
||||
tbSafeRuleOneVo.setLevelIndexTwo(tbSafeRule.getLevelIndexTwo());
|
||||
tbSafeRuleOneVo.setLevelIndexThree(tbSafeRule.getLevelIndexThree());
|
||||
tbSafeRuleOneVo.setNote(tbSafeRule.getNote());
|
||||
tbSafeRuleOneVo.setTbSafeRuleTwoVoList(null);
|
||||
list.add(tbSafeRuleOneVo);
|
||||
}
|
||||
}
|
||||
for (TbSafeRuleOneVo tbSafeRuleOneVo : list) {
|
||||
tbSafeRuleOneVo.setTbSafeRuleTwoVoList(getTbSafeRuleTwoVoList(tbSafeRuleList, tbSafeRuleOneVo));
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<TbSafeRuleTwoVo> getRuleTwo() {
|
||||
QueryWrapper<TbSafeRule> queryWrapper = Wrappers.query();
|
||||
//查询出所有规则名表
|
||||
List<TbSafeRule> tbSafeRuleList = this.list(queryWrapper);
|
||||
List<TbSafeRuleTwoVo> list = new ArrayList<>();
|
||||
if (null == tbSafeRuleList || tbSafeRuleList.size() == 0) {
|
||||
return list;
|
||||
}
|
||||
for (TbSafeRule tbSafeRule : tbSafeRuleList) {
|
||||
if (NbConstants.LEVEL_INDEX_TWO == Integer.parseInt(tbSafeRule.getLevelIndex())
|
||||
&& !"防疫安全".equals(tbSafeRule.getLevelIndexOne())) {
|
||||
TbSafeRuleTwoVo tbSafeRuleTwoVo = new TbSafeRuleTwoVo();
|
||||
tbSafeRuleTwoVo.setId(tbSafeRule.getId());
|
||||
tbSafeRuleTwoVo.setLevelIndex(NbConstants.LEVEL_INDEX_TWO);
|
||||
tbSafeRuleTwoVo.setLevelIndexOne(tbSafeRule.getLevelIndexOne());
|
||||
tbSafeRuleTwoVo.setLevelIndexTwo(tbSafeRule.getLevelIndexTwo());
|
||||
tbSafeRuleTwoVo.setLevelIndexThree(tbSafeRule.getLevelIndexThree());
|
||||
tbSafeRuleTwoVo.setNote(tbSafeRule.getNote());
|
||||
tbSafeRuleTwoVo.setTbSafeRuleThreeVoList(null);
|
||||
list.add(tbSafeRuleTwoVo);
|
||||
}
|
||||
}
|
||||
for (TbSafeRuleTwoVo tbSafeRuleTwoVo : list) {
|
||||
tbSafeRuleTwoVo.setTbSafeRuleThreeVoList(getTbSafeRuleTwoVo(tbSafeRuleList, tbSafeRuleTwoVo));
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 二级
|
||||
*/
|
||||
private List<TbSafeRuleTwoVo> getTbSafeRuleTwoVoList(List<TbSafeRule> tbSafeRuleList, TbSafeRuleOneVo tbSafeRuleOneVo) {
|
||||
List<TbSafeRuleTwoVo> tbSafeRuleTwoVoList = new ArrayList<>();
|
||||
for (TbSafeRule tbSafeRule : tbSafeRuleList) {
|
||||
if (NbConstants.LEVEL_INDEX_TWO == Integer.parseInt(tbSafeRule.getLevelIndex())
|
||||
&& tbSafeRuleOneVo.getLevelIndexOne().equals(tbSafeRule.getLevelIndexOne())) {
|
||||
TbSafeRuleTwoVo tbSafeRuleTwoVo = new TbSafeRuleTwoVo();
|
||||
tbSafeRuleTwoVo.setId(tbSafeRule.getId());
|
||||
tbSafeRuleTwoVo.setLevelIndex(NbConstants.LEVEL_INDEX_TWO);
|
||||
tbSafeRuleTwoVo.setLevelIndexOne(tbSafeRule.getLevelIndexOne());
|
||||
tbSafeRuleTwoVo.setLevelIndexTwo(tbSafeRule.getLevelIndexTwo());
|
||||
tbSafeRuleTwoVo.setLevelIndexThree(tbSafeRule.getLevelIndexThree());
|
||||
tbSafeRuleTwoVo.setTbSafeRuleThreeVoList(getTbSafeRuleTwoVo(tbSafeRuleList, tbSafeRuleTwoVo));
|
||||
tbSafeRuleTwoVoList.add(tbSafeRuleTwoVo);
|
||||
}
|
||||
}
|
||||
return tbSafeRuleTwoVoList;
|
||||
}
|
||||
|
||||
/**
|
||||
* 三级
|
||||
*/
|
||||
private List<TbSafeRuleThreeVo> getTbSafeRuleTwoVo(List<TbSafeRule> tbSafeRuleList, TbSafeRuleTwoVo tbSafeRuleTwoVo) {
|
||||
List<TbSafeRuleThreeVo> tbSafeRuleThreeVoList = new ArrayList<>();
|
||||
for (TbSafeRule tbSafeRule : tbSafeRuleList) {
|
||||
if (NbConstants.LEVEL_INDEX_THREE == Integer.parseInt(tbSafeRule.getLevelIndex())
|
||||
&& tbSafeRule.getLevelIndexTwo().equals(tbSafeRuleTwoVo.getLevelIndexTwo())
|
||||
&& tbSafeRule.getLevelIndexOne().equals(tbSafeRuleTwoVo.getLevelIndexOne())) {
|
||||
TbSafeRuleThreeVo tbSafeRuleThreeVo = new TbSafeRuleThreeVo();
|
||||
tbSafeRuleThreeVo.setId(tbSafeRule.getId());
|
||||
tbSafeRuleThreeVo.setLevelIndex(NbConstants.LEVEL_INDEX_THREE);
|
||||
tbSafeRuleThreeVo.setLevelIndexOne(tbSafeRule.getLevelIndexOne());
|
||||
tbSafeRuleThreeVo.setLevelIndexTwo(tbSafeRule.getLevelIndexTwo());
|
||||
tbSafeRuleThreeVo.setLevelIndexThree(tbSafeRule.getLevelIndexThree());
|
||||
tbSafeRuleThreeVo.setNote(tbSafeRule.getNote());
|
||||
tbSafeRuleThreeVoList.add(tbSafeRuleThreeVo);
|
||||
}
|
||||
}
|
||||
return tbSafeRuleThreeVoList;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,25 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSpecialCountRecord;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbSpecialCountRecordService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbSpecialCountRecordMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_special_count_record(企业综合指数记录表)】的数据库操作Service实现
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
*/
|
||||
@Service
|
||||
@DataSource(value = DataSourceType.SLAVE)
|
||||
public class TbSpecialCountRecordServiceImpl extends ServiceImpl<TbSpecialCountRecordMapper, TbSpecialCountRecord>
|
||||
implements TbSpecialCountRecordService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,25 @@
|
||||
package com.ruoyi.business.enterpriserectification.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.business.enterpriserectification.pojo.TbSynergismEnterpriseSupervision;
|
||||
import com.ruoyi.business.enterpriserectification.service.TbSynergismEnterpriseSupervisionService;
|
||||
import com.ruoyi.business.enterpriserectification.mapper.TbSynergismEnterpriseSupervisionMapper;
|
||||
import com.ruoyi.common.annotation.DataSource;
|
||||
import com.ruoyi.common.enums.DataSourceType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 章北海
|
||||
* @description 针对表【tb_synergism_enterprise_supervision(企业监管表)】的数据库操作Service实现
|
||||
* @createDate 2024-07-01 19:21:53
|
||||
*/
|
||||
@Service
|
||||
@DataSource(value = DataSourceType.SLAVE)
|
||||
public class TbSynergismEnterpriseSupervisionServiceImpl extends ServiceImpl<TbSynergismEnterpriseSupervisionMapper, TbSynergismEnterpriseSupervision>
|
||||
implements TbSynergismEnterpriseSupervisionService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,70 @@
|
||||
<?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.ruoyi.business.enterpriserectification.mapper.TbCompanyInfoMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbCompanyInfo">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="companyName" column="company_name" jdbcType="VARCHAR"/>
|
||||
<result property="companyType" column="company_type" jdbcType="VARCHAR"/>
|
||||
<result property="socialCreditCode" column="social_credit_code" jdbcType="VARCHAR"/>
|
||||
<result property="companyNature" column="company_nature" jdbcType="VARCHAR"/>
|
||||
<result property="establishDate" column="establish_date" jdbcType="TIMESTAMP"/>
|
||||
<result property="businessTermDate" column="business_term_date" jdbcType="VARCHAR"/>
|
||||
<result property="registerAddress" column="register_address" jdbcType="VARCHAR"/>
|
||||
<result property="businessStatus" column="business_status" jdbcType="VARCHAR"/>
|
||||
<result property="legalPerson" column="legal_person" jdbcType="VARCHAR"/>
|
||||
<result property="registerCapital" column="register_capital" jdbcType="VARCHAR"/>
|
||||
<result property="businessLicenseDate" column="business_license_date" jdbcType="TIMESTAMP"/>
|
||||
<result property="registerAuthority" column="register_authority" jdbcType="VARCHAR"/>
|
||||
<result property="emergencyContact" column="emergency_contact" jdbcType="VARCHAR"/>
|
||||
<result property="emergencyContactPhone" column="emergency_contact_phone" jdbcType="VARCHAR"/>
|
||||
<result property="companyAddress" column="company_address" jdbcType="VARCHAR"/>
|
||||
<result property="businessScope" column="business_scope" jdbcType="VARCHAR"/>
|
||||
<result property="picUrl" column="pic_url" jdbcType="VARCHAR"/>
|
||||
<result property="longitude" column="longitude" jdbcType="VARCHAR"/>
|
||||
<result property="latitude" column="latitude" jdbcType="VARCHAR"/>
|
||||
<result property="provinceCode" column="province_code" jdbcType="VARCHAR"/>
|
||||
<result property="provinceName" column="province_name" jdbcType="VARCHAR"/>
|
||||
<result property="cityCode" column="city_code" jdbcType="VARCHAR"/>
|
||||
<result property="cityName" column="city_name" jdbcType="VARCHAR"/>
|
||||
<result property="areaCode" column="area_code" jdbcType="VARCHAR"/>
|
||||
<result property="areaName" column="area_name" jdbcType="VARCHAR"/>
|
||||
<result property="streetCode" column="street_code" jdbcType="VARCHAR"/>
|
||||
<result property="streetName" column="street_name" jdbcType="VARCHAR"/>
|
||||
<result property="blockCode" column="block_code" jdbcType="VARCHAR"/>
|
||||
<result property="blockName" column="block_name" jdbcType="VARCHAR"/>
|
||||
<result property="policeDistrict" column="police_district" jdbcType="VARCHAR"/>
|
||||
<result property="policeDistrictCode" column="police_district_code" jdbcType="VARCHAR"/>
|
||||
<result property="belongingArea" column="belonging_area" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
||||
<result property="isActive" column="is_active" jdbcType="VARCHAR"/>
|
||||
<result property="c1" column="c1" jdbcType="VARCHAR"/>
|
||||
<result property="c2" column="c2" jdbcType="VARCHAR"/>
|
||||
<result property="c3" column="c3" jdbcType="VARCHAR"/>
|
||||
<result property="c4" column="c4" jdbcType="VARCHAR"/>
|
||||
<result property="c5" column="c5" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,company_name,company_type,
|
||||
social_credit_code,company_nature,establish_date,
|
||||
business_term_date,register_address,business_status,
|
||||
legal_person,register_capital,business_license_date,
|
||||
register_authority,emergency_contact,emergency_contact_phone,
|
||||
company_address,business_scope,pic_url,
|
||||
longitude,latitude,province_code,
|
||||
province_name,city_code,city_name,
|
||||
area_code,area_name,street_code,
|
||||
street_name,block_code,block_name,
|
||||
police_district,police_district_code,belonging_area,
|
||||
create_time,create_by,update_time,
|
||||
update_by,is_active,c1,
|
||||
c2,c3,c4,
|
||||
c5
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,39 @@
|
||||
<?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.ruoyi.business.enterpriserectification.mapper.TbSafeCompanyStatisticsScoreDetailMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScoreDetail">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="safeRuleId" column="safe_rule_id" jdbcType="BIGINT"/>
|
||||
<result property="companyId" column="company_id" jdbcType="BIGINT"/>
|
||||
<result property="levelIndex" column="level_index" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndexOne" column="level_index_one" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndexTwo" column="level_index_two" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndexThree" column="level_index_three" jdbcType="VARCHAR"/>
|
||||
<result property="score" column="score" jdbcType="VARCHAR"/>
|
||||
<result property="scoreType" column="score_type" jdbcType="VARCHAR"/>
|
||||
<result property="statisticsDate" column="statistics_date" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
||||
<result property="isActive" column="is_active" jdbcType="VARCHAR"/>
|
||||
<result property="c1" column="c1" jdbcType="VARCHAR"/>
|
||||
<result property="c2" column="c2" jdbcType="VARCHAR"/>
|
||||
<result property="c3" column="c3" jdbcType="VARCHAR"/>
|
||||
<result property="c4" column="c4" jdbcType="VARCHAR"/>
|
||||
<result property="c5" column="c5" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,safe_rule_id,company_id,
|
||||
level_index,level_index_one,level_index_two,
|
||||
level_index_three,score,score_type,
|
||||
statistics_date,create_time,create_by,
|
||||
update_time,update_by,is_active,
|
||||
c1,c2,c3,
|
||||
c4,c5
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,32 @@
|
||||
<?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.ruoyi.business.enterpriserectification.mapper.TbSafeCompanyStatisticsScoreMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbSafeCompanyStatisticsScore">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="companyId" column="company_id" jdbcType="BIGINT"/>
|
||||
<result property="score" column="score" jdbcType="DOUBLE"/>
|
||||
<result property="scoreType" column="score_type" jdbcType="VARCHAR"/>
|
||||
<result property="statisticsDate" column="statistics_date" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
||||
<result property="isActive" column="is_active" jdbcType="VARCHAR"/>
|
||||
<result property="c1" column="c1" jdbcType="VARCHAR"/>
|
||||
<result property="c2" column="c2" jdbcType="VARCHAR"/>
|
||||
<result property="c3" column="c3" jdbcType="VARCHAR"/>
|
||||
<result property="c4" column="c4" jdbcType="VARCHAR"/>
|
||||
<result property="c5" column="c5" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,company_id,score,
|
||||
score_type,statistics_date,create_time,
|
||||
create_by,update_time,update_by,
|
||||
is_active,c1,c2,
|
||||
c3,c4,c5
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,36 @@
|
||||
<?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.ruoyi.business.enterpriserectification.mapper.TbSafeRuleMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbSafeRule">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="levelIndexOne" column="level_index_one" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndexTwo" column="level_index_two" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndexThree" column="level_index_three" jdbcType="VARCHAR"/>
|
||||
<result property="note" column="note" jdbcType="VARCHAR"/>
|
||||
<result property="levelIndex" column="level_index" jdbcType="VARCHAR"/>
|
||||
<result property="sortValue" column="sort_value" jdbcType="INTEGER"/>
|
||||
<result property="isRangePage" column="is_range_page" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
||||
<result property="isActive" column="is_active" jdbcType="VARCHAR"/>
|
||||
<result property="c1" column="c1" jdbcType="VARCHAR"/>
|
||||
<result property="c2" column="c2" jdbcType="VARCHAR"/>
|
||||
<result property="c3" column="c3" jdbcType="VARCHAR"/>
|
||||
<result property="c4" column="c4" jdbcType="VARCHAR"/>
|
||||
<result property="c5" column="c5" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,level_index_one,level_index_two,
|
||||
level_index_three,note,level_index,
|
||||
sort_value,is_range_page,create_time,
|
||||
create_by,update_time,update_by,
|
||||
is_active,c1,c2,
|
||||
c3,c4,c5
|
||||
</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.ruoyi.business.enterpriserectification.mapper.TbSpecialCountRecordMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbSpecialCountRecord">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
|
||||
<result property="companyName" column="company_name" jdbcType="VARCHAR"/>
|
||||
<result property="countTime" column="count_time" jdbcType="DATE"/>
|
||||
<result property="companyGh" column="company_gh" jdbcType="VARCHAR"/>
|
||||
<result property="companyGhMonth" column="company_gh_month" jdbcType="VARCHAR"/>
|
||||
<result property="companyGhSeason" column="company_gh_season" jdbcType="VARCHAR"/>
|
||||
<result property="companyGhYear" column="company_gh_year" jdbcType="VARCHAR"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,company_id,company_name,
|
||||
count_time,company_gh,company_gh_month,
|
||||
company_gh_season,company_gh_year,update_time
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,62 @@
|
||||
<?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.ruoyi.business.enterpriserectification.mapper.TbSynergismEnterpriseSupervisionMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.ruoyi.business.enterpriserectification.pojo.TbSynergismEnterpriseSupervision">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="enterpriseName" column="enterprise_name" jdbcType="VARCHAR"/>
|
||||
<result property="enterpriseType" column="enterprise_type" jdbcType="VARCHAR"/>
|
||||
<result property="enterpriseStreet" column="enterprise_street" jdbcType="VARCHAR"/>
|
||||
<result property="includedSupervisionTime" column="included_supervision_time" jdbcType="DATE"/>
|
||||
<result property="checklistGenerationTime" column="checklist_generation_time" jdbcType="DATE"/>
|
||||
<result property="rectificationDeadline" column="rectification_deadline" jdbcType="DATE"/>
|
||||
<result property="rectificationStatus" column="rectification_status" jdbcType="VARCHAR"/>
|
||||
<result property="controlDeductionItem" column="control_deduction_item" jdbcType="VARCHAR"/>
|
||||
<result property="continuousDeductionItem" column="continuous_deduction_item" jdbcType="VARCHAR"/>
|
||||
<result property="supervisionTimes" column="supervision_times" jdbcType="INTEGER"/>
|
||||
<result property="continuousSupervisionTimes" column="continuous_supervision_times" jdbcType="INTEGER"/>
|
||||
<result property="elementAbnormalDetail" column="element_abnormal_detail" jdbcType="VARCHAR"/>
|
||||
<result property="rectificationResult" column="rectification_result" jdbcType="VARCHAR"/>
|
||||
<result property="appealVerificationNotNeeded" column="appeal_verification_not_needed" jdbcType="VARCHAR"/>
|
||||
<result property="overdueReminder" column="overdue_reminder" jdbcType="VARCHAR"/>
|
||||
<result property="listedSupervision" column="listed_supervision" jdbcType="VARCHAR"/>
|
||||
<result property="unitDivisionResponsibility" column="unit_division_responsibility" jdbcType="VARCHAR"/>
|
||||
<result property="supervisionUnit" column="supervision_unit" jdbcType="VARCHAR"/>
|
||||
<result property="disposalMethod" column="disposal_method" jdbcType="VARCHAR"/>
|
||||
<result property="disposalRequirement" column="disposal_requirement" jdbcType="VARCHAR"/>
|
||||
<result property="rectificationRequirement" column="rectification_requirement" jdbcType="VARCHAR"/>
|
||||
<result property="urgencyLevel" column="urgency_level" jdbcType="VARCHAR"/>
|
||||
<result property="responsiblePerson" column="responsible_person" jdbcType="VARCHAR"/>
|
||||
<result property="remarks" column="remarks" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
||||
<result property="isActive" column="is_active" jdbcType="VARCHAR"/>
|
||||
<result property="isFocus" column="is_focus" jdbcType="VARCHAR"/>
|
||||
<result property="definitionId" column="definition_id" jdbcType="VARCHAR"/>
|
||||
<result property="rectificationResultDefult" column="rectification_result_defult" jdbcType="VARCHAR"/>
|
||||
<result property="rectificationNoNum" column="rectification_no_num" jdbcType="INTEGER"/>
|
||||
<result property="isOverdueReminder" column="is_overdue_reminder" jdbcType="VARCHAR"/>
|
||||
<result property="isListedSupervision" column="is_listed_supervision" jdbcType="VARCHAR"/>
|
||||
<result property="safeRuleId" column="safe_rule_id" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,enterprise_name,enterprise_type,
|
||||
enterprise_street,included_supervision_time,checklist_generation_time,
|
||||
rectification_deadline,rectification_status,control_deduction_item,
|
||||
continuous_deduction_item,supervision_times,continuous_supervision_times,
|
||||
element_abnormal_detail,rectification_result,appeal_verification_not_needed,
|
||||
overdue_reminder,listed_supervision,unit_division_responsibility,
|
||||
supervision_unit,disposal_method,disposal_requirement,
|
||||
rectification_requirement,urgency_level,responsible_person,
|
||||
remarks,create_time,create_by,
|
||||
update_time,update_by,is_active,
|
||||
is_focus,definition_id,rectification_result_defult,
|
||||
rectification_no_num,is_overdue_reminder,is_listed_supervision,
|
||||
safe_rule_id
|
||||
</sql>
|
||||
</mapper>
|
@ -1,5 +1,5 @@
|
||||
#Generated by Maven
|
||||
#Tue Jul 09 15:46:42 CST 2024
|
||||
#Fri Jul 05 19:29:59 CST 2024
|
||||
version=3.8.5
|
||||
groupId=com.ruoyi
|
||||
artifactId=ruoyi-safecompany
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue