|
|
@@ -9,10 +9,10 @@ import java.util.Date;
|
|
|
* (OrganizationIdentity)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-04-16 11:07:11
|
|
|
+ * @since 2025-04-28 16:48:23
|
|
|
*/
|
|
|
public class OrganizationIdentity implements Serializable {
|
|
|
- private static final long serialVersionUID = 839209212752719848L;
|
|
|
+ private static final long serialVersionUID = -56235329099507123L;
|
|
|
|
|
|
private String id;
|
|
|
|
|
|
@@ -301,6 +301,10 @@ public class OrganizationIdentity implements Serializable {
|
|
|
* 联系人职位
|
|
|
*/
|
|
|
private String contactsPosition;
|
|
|
+ /**
|
|
|
+ * 所属行业名称
|
|
|
+ */
|
|
|
+ private String industryName;
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
@@ -887,5 +891,13 @@ public class OrganizationIdentity implements Serializable {
|
|
|
this.contactsPosition = contactsPosition;
|
|
|
}
|
|
|
|
|
|
+ public String getIndustryName() {
|
|
|
+ return industryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustryName(String industryName) {
|
|
|
+ this.industryName = industryName;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|