|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.business.domain.bo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ruoyi.business.enums.BusinessType;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
import com.ruoyi.common.core.validate.AddGroup;
|
|
|
@@ -10,6 +11,7 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
@@ -324,6 +326,22 @@ public class BusinessApplyBo extends BaseEntity {
|
|
|
@ApiModelProperty(value = "审核结果", required = true)
|
|
|
private String auditResult;
|
|
|
|
|
|
+ /**
|
|
|
+ * 代理审核时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "代理审核时间", required = true)
|
|
|
+ private Date agentAuditTime;
|
|
|
+ /**
|
|
|
+ * 代理审核人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "代理审核人", required = true)
|
|
|
+ private Long agentAuditUserId;
|
|
|
+ /**
|
|
|
+ * 代理审核结果
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "代理审核结果", required = true)
|
|
|
+ private String agentAuditResult;
|
|
|
+
|
|
|
/**
|
|
|
* 签名
|
|
|
*/
|
|
|
@@ -339,8 +357,13 @@ public class BusinessApplyBo extends BaseEntity {
|
|
|
private Integer agentAuditStatus;
|
|
|
private List<Integer> agentAuditStatusList;
|
|
|
|
|
|
- /**
|
|
|
- * 代理审核人
|
|
|
- */
|
|
|
- private Long agentAuditUserId;
|
|
|
+ @ApiModelProperty(value = "开始时间", required = true)
|
|
|
+ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date startTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "结束时间", required = true)
|
|
|
+ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date endTime;
|
|
|
}
|