| | |
| | |
|
| | | 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;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 前端跳转详情
|
| | |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Entity
|
| | | @Table(name = "`yeshi_ec_action_jumpdetail`")
|
| | | public class JumpDetail implements Serializable{
|
| | | |
| | | @Table("`yeshi_ec_action_jumpdetail`")
|
| | | public class JumpDetail implements Serializable {
|
| | |
|
| | | /**
|
| | | *
|
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | private static final Long serialVersionUID = 1L;
|
| | |
|
| | | @Column(name = "id")
|
| | | private long id;
|
| | | private Long id;
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | | @Column(name = "activity")
|
| | | private String activity;
|
| | | @Column(name = "controller")
|
| | | private String controller;
|
| | |
|
| | | public JumpDetail() {
|
| | | // TODO Auto-generated constructor stub
|
| | | }
|
| | | |
| | | public JumpDetail(long id) {
|
| | |
|
| | | public JumpDetail(Long id) {
|
| | | super();
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public long getId() {
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(long id) {
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|