admin
2021-02-19 58577bae968f2a10232bc8b3c04910b93ea3c69a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.yeshi.buwan.acFun;
 
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
import com.yeshi.buwan.domain.VideoType;
@Entity
@Table(name="wk_actype_eq_videotype")
public class AcTypeEqVideoType {
 
    
    @Id@GeneratedValue(strategy=GenerationType.AUTO)
    private Long id;
    @ManyToOne
    @JoinColumn(name="acFunType_id")
    private AcFunType acFunType;
    @ManyToOne
    @JoinColumn(name="videoType_id")
    private VideoType videoType;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public AcFunType getAcFunType() {
        return acFunType;
    }
    public void setAcFunType(AcFunType acFunType) {
        this.acFunType = acFunType;
    }
    public VideoType getVideoType() {
        return videoType;
    }
    public void setVideoType(VideoType videoType) {
        this.videoType = videoType;
    }
    
    
}