初始项目信息导入
This commit is contained in:
@@ -0,0 +1,196 @@
|
||||
package com.macro.mall.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class UmsMemberStatisticsInfo implements Serializable {
|
||||
private Long id;
|
||||
|
||||
private Long memberId;
|
||||
|
||||
private BigDecimal consumeAmount;
|
||||
|
||||
private Integer orderCount;
|
||||
|
||||
private Integer couponCount;
|
||||
|
||||
private Integer commentCount;
|
||||
|
||||
private Integer returnOrderCount;
|
||||
|
||||
private Integer loginCount;
|
||||
|
||||
private Integer attendCount;
|
||||
|
||||
private Integer fansCount;
|
||||
|
||||
private Integer collectProductCount;
|
||||
|
||||
private Integer collectSubjectCount;
|
||||
|
||||
private Integer collectTopicCount;
|
||||
|
||||
private Integer collectCommentCount;
|
||||
|
||||
private Integer inviteFriendCount;
|
||||
|
||||
private Date recentOrderTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getMemberId() {
|
||||
return memberId;
|
||||
}
|
||||
|
||||
public void setMemberId(Long memberId) {
|
||||
this.memberId = memberId;
|
||||
}
|
||||
|
||||
public BigDecimal getConsumeAmount() {
|
||||
return consumeAmount;
|
||||
}
|
||||
|
||||
public void setConsumeAmount(BigDecimal consumeAmount) {
|
||||
this.consumeAmount = consumeAmount;
|
||||
}
|
||||
|
||||
public Integer getOrderCount() {
|
||||
return orderCount;
|
||||
}
|
||||
|
||||
public void setOrderCount(Integer orderCount) {
|
||||
this.orderCount = orderCount;
|
||||
}
|
||||
|
||||
public Integer getCouponCount() {
|
||||
return couponCount;
|
||||
}
|
||||
|
||||
public void setCouponCount(Integer couponCount) {
|
||||
this.couponCount = couponCount;
|
||||
}
|
||||
|
||||
public Integer getCommentCount() {
|
||||
return commentCount;
|
||||
}
|
||||
|
||||
public void setCommentCount(Integer commentCount) {
|
||||
this.commentCount = commentCount;
|
||||
}
|
||||
|
||||
public Integer getReturnOrderCount() {
|
||||
return returnOrderCount;
|
||||
}
|
||||
|
||||
public void setReturnOrderCount(Integer returnOrderCount) {
|
||||
this.returnOrderCount = returnOrderCount;
|
||||
}
|
||||
|
||||
public Integer getLoginCount() {
|
||||
return loginCount;
|
||||
}
|
||||
|
||||
public void setLoginCount(Integer loginCount) {
|
||||
this.loginCount = loginCount;
|
||||
}
|
||||
|
||||
public Integer getAttendCount() {
|
||||
return attendCount;
|
||||
}
|
||||
|
||||
public void setAttendCount(Integer attendCount) {
|
||||
this.attendCount = attendCount;
|
||||
}
|
||||
|
||||
public Integer getFansCount() {
|
||||
return fansCount;
|
||||
}
|
||||
|
||||
public void setFansCount(Integer fansCount) {
|
||||
this.fansCount = fansCount;
|
||||
}
|
||||
|
||||
public Integer getCollectProductCount() {
|
||||
return collectProductCount;
|
||||
}
|
||||
|
||||
public void setCollectProductCount(Integer collectProductCount) {
|
||||
this.collectProductCount = collectProductCount;
|
||||
}
|
||||
|
||||
public Integer getCollectSubjectCount() {
|
||||
return collectSubjectCount;
|
||||
}
|
||||
|
||||
public void setCollectSubjectCount(Integer collectSubjectCount) {
|
||||
this.collectSubjectCount = collectSubjectCount;
|
||||
}
|
||||
|
||||
public Integer getCollectTopicCount() {
|
||||
return collectTopicCount;
|
||||
}
|
||||
|
||||
public void setCollectTopicCount(Integer collectTopicCount) {
|
||||
this.collectTopicCount = collectTopicCount;
|
||||
}
|
||||
|
||||
public Integer getCollectCommentCount() {
|
||||
return collectCommentCount;
|
||||
}
|
||||
|
||||
public void setCollectCommentCount(Integer collectCommentCount) {
|
||||
this.collectCommentCount = collectCommentCount;
|
||||
}
|
||||
|
||||
public Integer getInviteFriendCount() {
|
||||
return inviteFriendCount;
|
||||
}
|
||||
|
||||
public void setInviteFriendCount(Integer inviteFriendCount) {
|
||||
this.inviteFriendCount = inviteFriendCount;
|
||||
}
|
||||
|
||||
public Date getRecentOrderTime() {
|
||||
return recentOrderTime;
|
||||
}
|
||||
|
||||
public void setRecentOrderTime(Date recentOrderTime) {
|
||||
this.recentOrderTime = recentOrderTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(hashCode());
|
||||
sb.append(", id=").append(id);
|
||||
sb.append(", memberId=").append(memberId);
|
||||
sb.append(", consumeAmount=").append(consumeAmount);
|
||||
sb.append(", orderCount=").append(orderCount);
|
||||
sb.append(", couponCount=").append(couponCount);
|
||||
sb.append(", commentCount=").append(commentCount);
|
||||
sb.append(", returnOrderCount=").append(returnOrderCount);
|
||||
sb.append(", loginCount=").append(loginCount);
|
||||
sb.append(", attendCount=").append(attendCount);
|
||||
sb.append(", fansCount=").append(fansCount);
|
||||
sb.append(", collectProductCount=").append(collectProductCount);
|
||||
sb.append(", collectSubjectCount=").append(collectSubjectCount);
|
||||
sb.append(", collectTopicCount=").append(collectTopicCount);
|
||||
sb.append(", collectCommentCount=").append(collectCommentCount);
|
||||
sb.append(", inviteFriendCount=").append(inviteFriendCount);
|
||||
sb.append(", recentOrderTime=").append(recentOrderTime);
|
||||
sb.append(", serialVersionUID=").append(serialVersionUID);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user