|
@@ -0,0 +1,87 @@
|
|
|
+package cn.com.qmth.examcloud.core.basic.dao.entity;
|
|
|
+
|
|
|
+import javax.persistence.Column;
|
|
|
+import javax.persistence.Entity;
|
|
|
+import javax.persistence.GeneratedValue;
|
|
|
+import javax.persistence.Id;
|
|
|
+import javax.persistence.Table;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.jpa.JpaEntity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * face++ faceset
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2018年9月3日
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
+ */
|
|
|
+@Entity
|
|
|
+@Table(name = "EC_B_FACESET")
|
|
|
+public class FacesetEntity extends JpaEntity {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = -1831392800541099736L;
|
|
|
+
|
|
|
+ @Id
|
|
|
+ @GeneratedValue
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Column(nullable = false, unique = true)
|
|
|
+ private String facesetToken;
|
|
|
+
|
|
|
+ private int faceCount;
|
|
|
+
|
|
|
+ private String outerId;
|
|
|
+
|
|
|
+ private String displayName;
|
|
|
+
|
|
|
+ private String tags;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFacesetToken() {
|
|
|
+ return facesetToken;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFacesetToken(String facesetToken) {
|
|
|
+ this.facesetToken = facesetToken;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getFaceCount() {
|
|
|
+ return faceCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFaceCount(int faceCount) {
|
|
|
+ this.faceCount = faceCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOuterId() {
|
|
|
+ return outerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOuterId(String outerId) {
|
|
|
+ this.outerId = outerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDisplayName() {
|
|
|
+ return displayName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDisplayName(String displayName) {
|
|
|
+ this.displayName = displayName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTags() {
|
|
|
+ return tags;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTags(String tags) {
|
|
|
+ this.tags = tags;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|