Package com.example.model

Source Code of com.example.model.Tag

package com.example.model;

import net.csdn.common.exception.AutoGeneration;
import net.csdn.jpa.association.Association;
import net.csdn.jpa.model.Model;

import javax.persistence.ManyToOne;

/**
* 7/22/14 WilliamZhu(allwefantasy@gmail.com)
*/
public class Tag extends Model {

    @ManyToOne
    private TagSynonym tagSynonym;

    public Association tagSynonym() {
        throw new AutoGeneration();
    }
}
TOP

Related Classes of com.example.model.Tag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.