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
65
66
67
68
69
70
71
72
73
74
75
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_img")
public class RecommendActivityImg {
    @Column(name = "ai_id")
    private Long id;
    @Column(name = "ai_activity_id")
    private RecommendActivity recommendActivity;
    @Column(name = "ai_img")
    private String img;
    @Column(name = "ai_orderby")
    private Integer orderBy;
 
    @Column(name = "ai_img_height")
    private Integer imgHeight;
    @Column(name = "ai_img_width")
    private Integer imgWidth;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public RecommendActivity getRecommendActivity() {
        return recommendActivity;
    }
 
    public void setRecommendActivity(RecommendActivity recommendActivity) {
        this.recommendActivity = recommendActivity;
    }
 
    public String getImg() {
        return img;
    }
 
    public void setImg(String img) {
        this.img = img;
    }
 
    public Integer getOrderBy() {
        return orderBy;
    }
 
    public void setOrderBy(Integer orderBy) {
        this.orderBy = orderBy;
    }
 
    public Integer getImgHeight() {
        return imgHeight;
    }
 
    public void setImgHeight(Integer imgHeight) {
        this.imgHeight = imgHeight;
    }
 
    public Integer getImgWidth() {
        return imgWidth;
    }
 
    public void setImgWidth(Integer imgWidth) {
        this.imgWidth = imgWidth;
    }
}