| 12345678910111213141516171819202122232425262728 |
- package com.goafanti.customer.bo;
- import com.goafanti.common.model.OrganizationIdentity;
- public class CustomerOrganizationDetailBo extends OrganizationIdentity{
- private String societyTag;
- private String companyLogoUrl;
- private String introduction;
- public String getSocietyTag() {
- return societyTag;
- }
- public void setSocietyTag(String societyTag) {
- this.societyTag = societyTag;
- }
- public String getCompanyLogoUrl() {
- return companyLogoUrl;
- }
- public void setCompanyLogoUrl(String companyLogoUrl) {
- this.companyLogoUrl = companyLogoUrl;
- }
- public String getIntroduction() {
- return introduction;
- }
- public void setIntroduction(String introduction) {
- this.introduction = introduction;
- }
- }
|