| | |
| | | package com.taoke.autopay.entity; |
| | | |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.experimental.Tolerate; |
| | | import org.springframework.data.annotation.Id; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | |
| | | * @date 2024/6/28 17:08 |
| | | */ |
| | | @Table("table_wx_user_order_count") |
| | | @Data |
| | | @Builder |
| | | public class WxUserOrderCount { |
| | | @Tolerate |
| | | public WxUserOrderCount(){ |
| | | |
| | | } |
| | | @Id |
| | | @Column(name = "id") |
| | | private String id; |
| | |
| | | private Integer orderCount; |
| | | @Column(name = "order_type") |
| | | private Integer orderType; |
| | | @Column(name = "order_channel") |
| | | private OrderChannelEnum orderChannel; |
| | | @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; |
| | | } |
| | | } |