| | |
| | | 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;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | /**
|
| | | * 跳转详情-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")
|