| | |
| | | package com.yeshi.fanli.entity.common;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 前端跳转详情
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("`yeshi_ec_action_jumpdetail`")
|
| | | public class JumpDetail implements Serializable {
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final Long serialVersionUID = 1L;
|
| | |
|
| | | @Column(name = "id")
|
| | | private Long id;
|
| | | @Column(name = "name")
|
| | | private String name;
|
| | | @Column(name = "activity")
|
| | | private String activity;
|
| | | @Column(name = "controller")
|
| | | private String controller;
|
| | |
|
| | | public JumpDetail() {
|
| | | }
|
| | |
|
| | | 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;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.common; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 前端跳转详情 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("`yeshi_ec_action_jumpdetail`") |
| | | public class JumpDetail implements Serializable { |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final Long serialVersionUID = 1L; |
| | | |
| | | @Column(name = "id") |
| | | private Long id; |
| | | @Column(name = "name") |
| | | private String name; |
| | | @Column(name = "activity") |
| | | private String activity; |
| | | @Column(name = "controller") |
| | | private String controller; |
| | | |
| | | public JumpDetail() { |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |