package com.taoke.autopay.entity;
|
|
import org.springframework.data.annotation.Id;
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: WxUserOrderCount
|
* @description: 用户订单数量
|
* @date 2024/6/28 17:08
|
*/
|
@Table("table_wx_user_order_count")
|
public class WxUserOrderCount {
|
@Id
|
@Column(name = "id")
|
private String id;
|
@Column(name = "day")
|
private String day;
|
@Column(name = "uid")
|
private Long uid;
|
@Column(name = "order_count")
|
private Integer orderCount;
|
@Column(name = "order_type")
|
private Integer orderType;
|
@Column(name = "create_time")
|
private Date createTime;
|
@Column(name = "update_time")
|
private Date updateTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getDay() {
|
return day;
|
}
|
|
public void setDay(String day) {
|
this.day = day;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
|
|
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 Integer getOrderCount() {
|
return orderCount;
|
}
|
|
public void setOrderCount(Integer orderCount) {
|
this.orderCount = orderCount;
|
}
|
|
public Integer getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(Integer orderType) {
|
this.orderType = orderType;
|
}
|
}
|