package com.yeshi.fanli.entity.money;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.yeshi.fanli.dto.HongBao;
|
|
/**
|
* 账户明细与红包映射记录
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_account_details_hongbao_map")
|
public class AccountDetailHongBaoMap {
|
@Column(name = "ahm_id")
|
private Long id;
|
@Column(name = "ahm_hongbao_id")
|
private HongBao hongBao;
|
@Column(name = "ahm_account_details_id")
|
private UserMoneyDetail userMoneyDetail;
|
@Column(name = "ahm_createtime")
|
private Date createTime;
|
@Column(name = "ahm_updatetime")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public HongBao getHongBao() {
|
return hongBao;
|
}
|
|
public void setHongBao(HongBao hongBao) {
|
this.hongBao = hongBao;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public UserMoneyDetail getUserMoneyDetail() {
|
return userMoneyDetail;
|
}
|
|
public void setUserMoneyDetail(UserMoneyDetail userMoneyDetail) {
|
this.userMoneyDetail = userMoneyDetail;
|
}
|
|
}
|