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

com.centit.framework.system.po.FVUserRolesId Maven / Gradle / Ivy

package com.centit.framework.system.po;

import javax.persistence.Column;
import javax.persistence.Embeddable;
import java.io.Serializable;

@Embeddable
public class FVUserRolesId implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -7725372179862779056L;

    /**
     * 用户代码
     */
    @Column(name = "USER_CODE")
    private String userCode;

    /**
     * 角色代码
     */
    @Column(name = "ROLE_CODE")
    private String roleCode; //

    public String getUserCode() {
        return userCode;
    }

    public void setUserCode(String userCode) {
        this.userCode = userCode;
    }

    public String getRoleCode() {
        return roleCode;
    }

    public void setRoleCode(String roleCode) {
        this.roleCode = roleCode;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy