Logo

GitLab

Sign in

tutorial / directive

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • directive
  • ..
  • domain
  • TenantDetail.java
  • 网盘升级
    ef164719
    zhaoxing authored
    2016-05-06 14:36:52 +0800  
    Browse File »
TenantDetail.java 351 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.xiniunet.erp.system.domain;

/**
 * Created on 2014/11/27.
 *
 * @author 吕浩
 * @version 1.0.0
 */
public class TenantDetail extends com.xiniunet.master.domain.system.Tenant {
	/**
	 * 图标的地址
	 */
	private String logo;

	public String getLogo() {
		return logo;
	}

	public void setLogo(String logo) {
		this.logo = logo;
	}
}