Commit d70e14d9 by 东州 翁

应前端需求加个未认证状态

parent 17db9816
...@@ -95,7 +95,7 @@ public class QyzxEntInfoM extends Model<QyzxEntInfoM> { ...@@ -95,7 +95,7 @@ public class QyzxEntInfoM extends Model<QyzxEntInfoM> {
@ApiModelProperty(value="营业执照 ",example="营业执照url ") @ApiModelProperty(value="营业执照 ",example="营业执照url ")
private String licenseUrl; private String licenseUrl;
@ApiModelProperty(value="认证状态 ",example="1 认证中,2已认证,3认证失败 ") @ApiModelProperty(value="认证状态 ",example="0未认证,1 认证中,2认证成功,3认证失败 ")
private Integer attestStatus; private Integer attestStatus;
@ApiModelProperty(value="认证时间 ",example="2019-12-12 08:00:00") @ApiModelProperty(value="认证时间 ",example="2019-12-12 08:00:00")
......
...@@ -49,9 +49,10 @@ public enum CommonEnum { ...@@ -49,9 +49,10 @@ public enum CommonEnum {
/** /**
* 企业认证状态 * 企业认证状态
*/ */
AUTH_TYPE_UNDEREVIEW(1,"审核中"), AUTH_TYPE_NOHADREVIEW(0,"未认证"),
AUTH_TYPE_FAILURE(2,"审核失败"), AUTH_TYPE_UNDEREVIEW(1,"认证中"),
AUTH_TYPE_SUCCESS(3,"审核成功"), AUTH_TYPE_SUCCESS(2,"认证成功"),
AUTH_TYPE_FAILURE(3,"认证失败"),
/** /**
......
...@@ -31,7 +31,7 @@ public class EntauthDto extends Page implements Serializable{ ...@@ -31,7 +31,7 @@ public class EntauthDto extends Page implements Serializable{
@ApiModelProperty(value="组织机构代码",example="117") @ApiModelProperty(value="组织机构代码",example="117")
private Integer orgCode; private Integer orgCode;
@ApiModelProperty(value="认证状态",example="2未通过或3通过") @ApiModelProperty(value="认证状态",example="2通过或3未通过")
private Integer authType; private Integer authType;
......
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