Commit ff085064 authored by suhuiguang's avatar suhuiguang

fix(开通):bug修改

1.在撤回到、驳回到发起单位时,清楚审批流程中填充的机构分类、有限期字段
parent fbf86044
package com.yeejoin.amos.boot.module.jyjc.api.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
......@@ -66,7 +67,7 @@ public class JyjcOpeningApplication extends BaseEntity {
/**
* 有效期至
*/
@TableField("expiry_date")
@TableField(value = "expiry_date", updateStrategy = FieldStrategy.IGNORED)
@JsonFormat (pattern = "yyyy-MM-dd")
private Date expiryDate;
......@@ -154,6 +155,12 @@ public class JyjcOpeningApplication extends BaseEntity {
/**
* 机构分类
*/
@TableField(value = "agency_classify")
@TableField(value = "agency_classify", updateStrategy = FieldStrategy.IGNORED)
private String agencyClassify;
/**
* 原始检测区域编码
*/
@TableField(value = "ori_detection_region", typeHandler = FastjsonTypeHandler.class)
private List<String> oriDetectionRegion;
}
......@@ -168,4 +168,7 @@ public class JyjcOpeningApplicationModel extends BaseModel {
@ApiModelProperty(value = "登录单位类型")
private String companyLevel;
@ApiModelProperty(value = "检测区域编码")
private List<String> oriDetectionRegion;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment