TenantUpdateExtendRequest.java 666 Bytes
package com.xiniunet.my.system.request;

import com.xiniunet.foundation.domain.Location;
import com.xiniunet.master.domain.system.User;
import com.xiniunet.master.request.system.TenantUpdateRequest;

/**
 * Created on 2014/9/23.
 *
 * @author 吕浩
 * @version v1.0.0.0
 */
public class TenantUpdateExtendRequest extends TenantUpdateRequest {
	private Location location;

	private User nextowner;

	public Location getLocation() {
		return location;
	}

	public void setLocation(Location location) {
		this.location = location;
	}

	public User getNextowner() {
		return nextowner;
	}

	public void setNextowner(User nextowner) {
		this.nextowner = nextowner;
	}
}