All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.dts.common.domain.store.UserGroupRelation Maven / Gradle / Ivy

package com.alibaba.dts.common.domain.store;

import java.util.Date;

/**
 * 用户资源关系表;
 * Created by luliang on 14/12/22.
 */
public class UserGroupRelation {

    /** 主键 */
    private long id;

    /** 创建时间 */
    private Date gmtCreate;

    /** 修改时间 */
    private Date gmtModified;
    
    /** 用户ID */
    private String userId;

    /** 组ID */
    private long groupId;

	/** Cluster ID */
	private Long clusterId;

	public long getId() {
		return id;
	}

	public void setId(long id) {
		this.id = id;
	}

	public Date getGmtCreate() {
		return gmtCreate;
	}

	public void setGmtCreate(Date gmtCreate) {
		this.gmtCreate = gmtCreate;
	}

	public Date getGmtModified() {
		return gmtModified;
	}

	public void setGmtModified(Date gmtModified) {
		this.gmtModified = gmtModified;
	}

	public String getUserId() {
		return userId;
	}

	public void setUserId(String userId) {
		this.userId = userId;
	}

	public long getGroupId() {
		return groupId;
	}

	public void setGroupId(long groupId) {
		this.groupId = groupId;
	}

	public Long getCluserId() {
		return clusterId;
	}

	public void setCluserId(Long cluserId) {
		this.clusterId = cluserId;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy