|
|
@@ -0,0 +1,50 @@
|
|
|
+package com.uas.kanban.model;
|
|
|
+
|
|
|
+import com.uas.kanban.annotation.FieldProperty;
|
|
|
+import com.uas.kanban.base.BaseEntity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 资源点
|
|
|
+ *
|
|
|
+ * @author sunyj
|
|
|
+ * @since 2017年9月9日 下午3:21:06
|
|
|
+ */
|
|
|
+public class ResourcePoint extends BaseEntity {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 名称
|
|
|
+ */
|
|
|
+ @FieldProperty(nullable = false)
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 密码
|
|
|
+ */
|
|
|
+ @FieldProperty(nullable = false)
|
|
|
+ private String password;
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPassword() {
|
|
|
+ return password;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPassword(String password) {
|
|
|
+ this.password = password;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ResourcePoint [name=" + name + ", password=" + password + ", id=" + id + ", createTime=" + createTime
|
|
|
+ + ", lastModified=" + lastModified + ", version=" + version + ", code=" + code + "]";
|
|
|
+ }
|
|
|
+
|
|
|
+}
|