package com.yeshi.fanli.entity.common;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
/**
|
* 前端跳转详情
|
*
|
* @author Administrator
|
*
|
*/
|
@Entity
|
@Table(name = "`yeshi_ec_action_jumpdetail`")
|
public class JumpDetail implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
@Column(name = "id")
|
private long id;
|
private String name;
|
private String activity;
|
private String controller;
|
|
public JumpDetail() {
|
// TODO Auto-generated constructor stub
|
}
|
|
public JumpDetail(long id) {
|
super();
|
this.id = id;
|
}
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getActivity() {
|
return activity;
|
}
|
|
public void setActivity(String activity) {
|
this.activity = activity;
|
}
|
|
public String getController() {
|
return controller;
|
}
|
|
public void setController(String controller) {
|
this.controller = controller;
|
}
|
}
|