| | |
| | | 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;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 跳转详情-v2版
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | * @date 2018年10月23日
|
| | | */
|
| | | @Table(name = "yeshi_ec_action_jumpdetail_v2")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_action_jumpdetail_v2")
|
| | | public class JumpDetailV2 implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Id
|
| | | @Column(name = "jp_id")
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_id")
|
| | | private Long id;
|
| | |
|
| | | // 名称
|
| | | @Column(name = "jp_name")
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_name")
|
| | | private String name;
|
| | |
|
| | | // Android链接
|
| | | @Expose
|
| | | @Column(name = "jp_activity")
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_activity")
|
| | | private String activity;
|
| | |
|
| | | // IOS跳转链接
|
| | | @Expose
|
| | | @Column(name = "jp_controller")
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_controller")
|
| | | private String controller;
|
| | |
|
| | | // 跳转类型
|
| | | @Expose
|
| | | @Column(name = "jp_type")
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_type")
|
| | | private String type;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "jp_need_login")
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_need_login")
|
| | | private Boolean needLogin;
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_min_android_version")
|
| | | private Integer minAndroidAppVersion;// 最小Android版本
|
| | | @org.yeshi.utils.mybatis.Column(name = "jp_min_ios_version")
|
| | | private Integer minIOSAppVersion;// 最小ios版本
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name = "jp_path")
|
| | | private String path;//小程序路径
|
| | |
|
| | | public String getPath() {
|
| | | return path;
|
| | | }
|
| | |
|
| | | public void setPath(String path) {
|
| | | this.path = path;
|
| | | }
|
| | |
|
| | | public Integer getMinAndroidAppVersion() {
|
| | | return minAndroidAppVersion;
|
| | | }
|
| | |
|
| | | public void setMinAndroidAppVersion(Integer minAndroidAppVersion) {
|
| | | this.minAndroidAppVersion = minAndroidAppVersion;
|
| | | }
|
| | |
|
| | | public Integer getMinIOSAppVersion() {
|
| | | return minIOSAppVersion;
|
| | | }
|
| | |
|
| | | public void setMinIOSAppVersion(Integer minIOSAppVersion) {
|
| | | this.minIOSAppVersion = minIOSAppVersion;
|
| | | }
|
| | |
|
| | | public Boolean getNeedLogin() {
|
| | | return needLogin;
|
| | | }
|
| | |
|
| | | public void setNeedLogin(Boolean needLogin) {
|
| | | this.needLogin = needLogin;
|
| | | }
|
| | |
|
| | | public JumpDetailV2() {
|
| | | }
|
| | |
|
| | | public JumpDetailV2(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;
|
| | | }
|
| | |
|
| | | public String getType() {
|
| | | return type;
|
| | | }
|
| | |
|
| | | public void setType(String type) {
|
| | | this.type = type;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.common; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * 跳转详情-v2版 |
| | | * |
| | | * @author Administrator |
| | | * @date 2018年10月23日 |
| | | */ |
| | | @org.yeshi.utils.generater.mybatis.Table("yeshi_ec_action_jumpdetail_v2") |
| | | public class JumpDetailV2 implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_id") |
| | | private Long id; |
| | | |
| | | // 名称 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_name") |
| | | private String name; |
| | | |
| | | // Android链接 |
| | | @Expose |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_activity") |
| | | private String activity; |
| | | |
| | | // IOS跳转链接 |
| | | @Expose |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_controller") |
| | | private String controller; |
| | | |
| | | @Expose |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_path") |
| | | private String path;//小程序路径 |
| | | |
| | | // 跳转类型 |
| | | @Expose |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_type") |
| | | private String type; |
| | | |
| | | @Expose |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_need_login") |
| | | private Boolean needLogin; |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_min_android_version") |
| | | private Integer minAndroidAppVersion;// 最小Android版本 |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_min_ios_version") |
| | | private Integer minIOSAppVersion;// 最小ios版本 |
| | | |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "jp_system") |
| | | private SystemEnum system; |
| | | |
| | | public String getPath() { |
| | | return path; |
| | | } |
| | | |
| | | public void setPath(String path) { |
| | | this.path = path; |
| | | } |
| | | |
| | | public Integer getMinAndroidAppVersion() { |
| | | return minAndroidAppVersion; |
| | | } |
| | | |
| | | public void setMinAndroidAppVersion(Integer minAndroidAppVersion) { |
| | | this.minAndroidAppVersion = minAndroidAppVersion; |
| | | } |
| | | |
| | | public Integer getMinIOSAppVersion() { |
| | | return minIOSAppVersion; |
| | | } |
| | | |
| | | public void setMinIOSAppVersion(Integer minIOSAppVersion) { |
| | | this.minIOSAppVersion = minIOSAppVersion; |
| | | } |
| | | |
| | | public Boolean getNeedLogin() { |
| | | return needLogin; |
| | | } |
| | | |
| | | public void setNeedLogin(Boolean needLogin) { |
| | | this.needLogin = needLogin; |
| | | } |
| | | |
| | | public JumpDetailV2() { |
| | | } |
| | | |
| | | public JumpDetailV2(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; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public SystemEnum getSystem() { |
| | | return system; |
| | | } |
| | | |
| | | public void setSystem(SystemEnum system) { |
| | | this.system = system; |
| | | } |
| | | } |