| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.ruoyi.wisdomarbitrate.domain;
-
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.core.domain.BaseEntity;
- import lombok.Data;
-
- import java.util.Date;
- @Data
- public class DeptIdentify extends BaseEntity {
- private static final long serialVersionUID = 1L;
-
- /** ID */
- private Long id;
- /** 机构名称 */
- private String identifyName;
- /** 认证状态 */
- private Integer identifyStatus;
- /** 认证时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date identifyDate;
- /** 是否启用 */
- private Integer isUse;
- /** 经办人姓名 */
- private String operName;
- /** 经办人手机号 */
- private String operPhone;
-
- /** 机构账号ID */
- private String orgId;
- /** 认证授权流程ID */
- private String authFlowId;
-
- /** 部门认证链接 */
- private String identifyUrl;
-
- /** 机构类型(1 仲裁机构) */
- private Integer identifyType;
-
-
- }
|