admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.yeshi.fanli.entity.bus.activity;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 动态图片
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_activity_invite_info")
public class RecommendActivityInviteInfo {
    @Column(name = "aii_id")
    private Long id;
    @Column(name = "aii_px")
    private Integer px;
    @Column(name = "aii_py")
    private Integer py;
    @Column(name = "aii_size")
    private Integer size;
    @Column(name = "aii_activity_id")
    private RecommendActivity recommendActivity;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getPx() {
        return px;
    }
 
    public void setPx(Integer px) {
        this.px = px;
    }
 
    public Integer getPy() {
        return py;
    }
 
    public void setPy(Integer py) {
        this.py = py;
    }
 
    public Integer getSize() {
        return size;
    }
 
    public void setSize(Integer size) {
        this.size = size;
    }
 
    public RecommendActivity getRecommendActivity() {
        return recommendActivity;
    }
 
    public void setRecommendActivity(RecommendActivity recommendActivity) {
        this.recommendActivity = recommendActivity;
    }
}