YxyMarketingWeek.java
1.3 KB
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
package com.espeed.yxy.pojo;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="yxy_marketing_week")
public class YxyMarketingWeek implements Serializable{
private int week_id;
private int week_value;//周期值
private int plan_id;//计划ID
private int mode_id;//模版ID
private int isexecution;//是否执行
private String week_day;//执行具体时间与周对应
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
public int getWeek_id() {
return week_id;
}
public void setWeek_id(int weekId) {
week_id = weekId;
}
public int getWeek_value() {
return week_value;
}
public void setWeek_value(int weekValue) {
week_value = weekValue;
}
public int getPlan_id() {
return plan_id;
}
public void setPlan_id(int planId) {
plan_id = planId;
}
public int getMode_id() {
return mode_id;
}
public void setMode_id(int modeId) {
mode_id = modeId;
}
public int getIsexecution() {
return isexecution;
}
public void setIsexecution(int isexecution) {
this.isexecution = isexecution;
}
public String getWeek_day() {
return week_day;
}
public void setWeek_day(String weekDay) {
week_day = weekDay;
}
}