bug
parent
e753ccf0ab
commit
e860ecf34d
|
|
@ -1,7 +1,9 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
|
@ -38,5 +40,7 @@ public class FileInfoCO {
|
|||
private String creatorName;
|
||||
|
||||
@ApiModelProperty(value = "上传时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime createdTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 机构信息CO(Client Object)
|
||||
|
|
@ -153,5 +156,7 @@ public class OrgInfoCO {
|
|||
private Long orgId;
|
||||
|
||||
@ApiModelProperty(value = "创建时间(开户时间)")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime createTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 人员变更记录CO(Client Object)
|
||||
|
|
@ -23,6 +25,8 @@ public class OrgPersonnelChangeCO {
|
|||
private String changeItem;
|
||||
|
||||
@ApiModelProperty(value = "变更时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime changeTime;
|
||||
|
||||
@ApiModelProperty(value = "操作人姓名")
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 人员离职申请CO(Client Object)
|
||||
|
|
@ -23,6 +26,8 @@ public class OrgResignApplyCO {
|
|||
private String applicantName;
|
||||
|
||||
@ApiModelProperty(value = "申请时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime applyTime;
|
||||
|
||||
@ApiModelProperty(value = "离职原因")
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 资质备案申请CO(Client Object)
|
||||
|
|
@ -104,9 +106,13 @@ public class QualFilingCO {
|
|||
private Long filingReviewId;
|
||||
|
||||
@ApiModelProperty(value = "提交时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private java.time.LocalDateTime submitTime;
|
||||
|
||||
@ApiModelProperty(value = "审核通过时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private java.time.LocalDateTime approveTime;
|
||||
|
||||
@ApiModelProperty(value = "租户ID")
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
|
@ -18,6 +20,8 @@ public class QualFilingChangeHistoryItemCO {
|
|||
private String changeItemName;
|
||||
|
||||
@ApiModelProperty(value = "变更时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime changeTime;
|
||||
|
||||
@ApiModelProperty(value = "操作人")
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 备案变更机构端CO(Client Object)
|
||||
|
|
@ -35,6 +38,8 @@ public class QualFilingChangeOrgCO {
|
|||
private String rejectReason;
|
||||
|
||||
@ApiModelProperty(value = "提交时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private java.time.LocalDateTime submitTime;
|
||||
|
||||
@ApiModelProperty(value = "备案地区编码")
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ package org.qinan.safetyeval.client.dto;
|
|||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
|
@ -26,8 +27,10 @@ public class BasePageQuery {
|
|||
private String orders;
|
||||
|
||||
@ApiModelProperty(value = "开始时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime startTime;
|
||||
|
||||
@ApiModelProperty(value = "结束时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime endTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
package org.qinan.safetyeval.client.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 人员变更记录新增命令
|
||||
|
|
@ -17,6 +19,8 @@ public class OrgPersonnelChangeAddCmd {
|
|||
private String changeItem;
|
||||
|
||||
@ApiModelProperty(value = "变更时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime changeTime;
|
||||
|
||||
@ApiModelProperty(value = "操作人")
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
package org.qinan.safetyeval.client.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 人员变更记录修改命令
|
||||
|
|
@ -20,6 +22,8 @@ public class OrgPersonnelChangeModifyCmd {
|
|||
private String changeItem;
|
||||
|
||||
@ApiModelProperty(value = "变更时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime changeTime;
|
||||
|
||||
@ApiModelProperty(value = "操作人")
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
package org.qinan.safetyeval.client.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 人员离职申请新增命令
|
||||
|
|
@ -17,6 +20,8 @@ public class OrgResignApplyAddCmd {
|
|||
private String applicantName;
|
||||
|
||||
@ApiModelProperty(value = "申请时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime applyTime;
|
||||
|
||||
@ApiModelProperty(value = "离职原因")
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
package org.qinan.safetyeval.client.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 人员离职申请修改命令
|
||||
|
|
@ -20,6 +23,8 @@ public class OrgResignApplyModifyCmd {
|
|||
private String applicantName;
|
||||
|
||||
@ApiModelProperty(value = "申请时间")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private LocalDateTime applyTime;
|
||||
|
||||
@ApiModelProperty(value = "离职原因")
|
||||
|
|
|
|||
|
|
@ -116,6 +116,9 @@ public class QualFilingGatewayImpl implements QualFilingGateway {
|
|||
if (StringUtils.hasText(query.getFilingTerritoryCode())) {
|
||||
wrapper.eq(QualFilingDO::getFilingTerritoryCode, query.getFilingTerritoryCode());
|
||||
}
|
||||
if (Objects.nonNull(query.getApplyTypeCode())) {
|
||||
wrapper.eq(QualFilingDO::getApplyTypeCode, query.getApplyTypeCode());
|
||||
}
|
||||
if (query.getSupervision()) {
|
||||
wrapper.ne(QualFilingDO::getFilingStatusCode, 5);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue