| | |
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 跳转详情-v2版
|
| | | *
|
| | |
| | | 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;
|