| | |
| | | package com.yeshi.fanli.entity.elme;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.HongBaoV2;
|
| | |
|
| | | /**
|
| | | * 饿了么红包订单映射
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_elme_order_hongbao")
|
| | | public class ElmeHongBaoOrderMap {
|
| | | @Column(name = "eoh_id")
|
| | | private Long id;
|
| | | @Column(name = "eoh_order_id")
|
| | | private ElmeOrder elmeOrder;
|
| | | @Column(name = "eoh_hongbao_id")
|
| | | private HongBaoV2 hongBao;
|
| | | @Column(name = "eoh_create_time")
|
| | | private Date createTime;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public ElmeOrder getElmeOrder() {
|
| | | return elmeOrder;
|
| | | }
|
| | |
|
| | | public void setElmeOrder(ElmeOrder elmeOrder) {
|
| | | this.elmeOrder = elmeOrder;
|
| | | }
|
| | |
|
| | | public HongBaoV2 getHongBao() {
|
| | | return hongBao;
|
| | | }
|
| | |
|
| | | public void setHongBao(HongBaoV2 hongBao) {
|
| | | this.hongBao = hongBao;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.elme; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.HongBaoV2; |
| | | |
| | | /** |
| | | * 饿了么红包订单映射 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_elme_order_hongbao") |
| | | public class ElmeHongBaoOrderMap { |
| | | @Column(name = "eoh_id") |
| | | private Long id; |
| | | @Column(name = "eoh_order_id") |
| | | private ElmeOrder elmeOrder; |
| | | @Column(name = "eoh_hongbao_id") |
| | | private HongBaoV2 hongBao; |
| | | @Column(name = "eoh_create_time") |
| | | private Date createTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public ElmeOrder getElmeOrder() { |
| | | return elmeOrder; |
| | | } |
| | | |
| | | public void setElmeOrder(ElmeOrder elmeOrder) { |
| | | this.elmeOrder = elmeOrder; |
| | | } |
| | | |
| | | public HongBaoV2 getHongBao() { |
| | | return hongBao; |
| | | } |
| | | |
| | | public void setHongBao(HongBaoV2 hongBao) { |
| | | this.hongBao = hongBao; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | } |