|
@@ -1,6 +1,7 @@
|
|
package com.qmth.themis.business.entity;
|
|
package com.qmth.themis.business.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.qmth.themis.business.base.BaseEntity;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
@@ -15,7 +16,7 @@ import java.util.Date;
|
|
* @Date: 2020/6/25
|
|
* @Date: 2020/6/25
|
|
*/
|
|
*/
|
|
@ApiModel(value = "t_b_org", description = "机构")
|
|
@ApiModel(value = "t_b_org", description = "机构")
|
|
-public class TBOrg implements Serializable {
|
|
|
|
|
|
+public class TBOrg extends BaseEntity {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@@ -55,13 +56,53 @@ public class TBOrg implements Serializable {
|
|
@TableId(value = "access_secret")
|
|
@TableId(value = "access_secret")
|
|
private String accessSecret;
|
|
private String accessSecret;
|
|
|
|
|
|
- @ApiModelProperty(value = "创建时间")
|
|
|
|
- @TableId(value = "create_time")
|
|
|
|
- private Date createTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "联系人")
|
|
|
|
+ @TableId(value = "contact_name")
|
|
|
|
+ private String contactName;
|
|
|
|
|
|
- @ApiModelProperty(value = "更新时间")
|
|
|
|
- @TableId(value = "update_time")
|
|
|
|
- private Date updateTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "联系人电话")
|
|
|
|
+ @TableId(value = "contact_phone")
|
|
|
|
+ private String contactPhone;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "是否允许使用活体")
|
|
|
|
+ @TableId(value = "enable_liveness")
|
|
|
|
+ private String enableLiveness;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "是否允许视频转录")
|
|
|
|
+ @TableId(value = "enable_video_record")
|
|
|
|
+ private String enableVideoRecord;
|
|
|
|
+
|
|
|
|
+ public String getContactName() {
|
|
|
|
+ return contactName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContactName(String contactName) {
|
|
|
|
+ this.contactName = contactName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getContactPhone() {
|
|
|
|
+ return contactPhone;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setContactPhone(String contactPhone) {
|
|
|
|
+ this.contactPhone = contactPhone;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getEnableLiveness() {
|
|
|
|
+ return enableLiveness;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEnableLiveness(String enableLiveness) {
|
|
|
|
+ this.enableLiveness = enableLiveness;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getEnableVideoRecord() {
|
|
|
|
+ return enableVideoRecord;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEnableVideoRecord(String enableVideoRecord) {
|
|
|
|
+ this.enableVideoRecord = enableVideoRecord;
|
|
|
|
+ }
|
|
|
|
|
|
public static long getSerialVersionUID() {
|
|
public static long getSerialVersionUID() {
|
|
return serialVersionUID;
|
|
return serialVersionUID;
|
|
@@ -138,20 +179,4 @@ public class TBOrg implements Serializable {
|
|
public void setAccessSecret(String accessSecret) {
|
|
public void setAccessSecret(String accessSecret) {
|
|
this.accessSecret = accessSecret;
|
|
this.accessSecret = accessSecret;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public Date getCreateTime() {
|
|
|
|
- return createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
|
- this.createTime = createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getUpdateTime() {
|
|
|
|
- return updateTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
|
- this.updateTime = updateTime;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|