修改 dto
This commit is contained in:
parent
6c74c399aa
commit
538feb17b2
@ -60,7 +60,7 @@ public class WalletLogOperationFeignController implements WalletLogOperationFeig
|
|||||||
message.setOrderIds(Collections.singletonList(esOrderBO.getOrderId()));
|
message.setOrderIds(Collections.singletonList(esOrderBO.getOrderId()));
|
||||||
// 添加未结算记录
|
// 添加未结算记录
|
||||||
// 采购订单不分账
|
// 采购订单不分账
|
||||||
if (Objects.equals(message.getPurchaseOrder(), Boolean.TRUE)) {
|
if (Objects.equals(message.getIsPurchaseOrder(), Boolean.TRUE)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// 定金预售订单付定金时不用全部分账
|
// 定金预售订单付定金时不用全部分账
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package com.tmerclub.cloud.common.cache.bo;
|
package com.tmerclub.cloud.common.cache.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@ -11,6 +13,8 @@ import java.io.Serializable;
|
|||||||
*/
|
*/
|
||||||
@ConfigurationProperties(prefix = "redis.aof")
|
@ConfigurationProperties(prefix = "redis.aof")
|
||||||
@Component
|
@Component
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AofRedisBO implements Serializable {
|
public class AofRedisBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -20,36 +24,5 @@ public class AofRedisBO implements Serializable {
|
|||||||
|
|
||||||
private Integer database;
|
private Integer database;
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDatabase() {
|
|
||||||
return database;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDatabase(Integer database) {
|
|
||||||
this.database = database;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRedisAddr() {
|
|
||||||
return redisAddr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRedisAddr(String redisAddr) {
|
|
||||||
this.redisAddr = redisAddr;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AofRedisBO{" +
|
|
||||||
"password='" + password + '\'' +
|
|
||||||
", redisAddr='" + redisAddr + '\'' +
|
|
||||||
", database=" + database +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.cache.bo;
|
package com.tmerclub.cloud.common.cache.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
@ -9,6 +12,7 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/7/4
|
* @date 2020/7/4
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class CacheNameWithTtlBO implements Serializable {
|
public class CacheNameWithTtlBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,22 +25,6 @@ public class CacheNameWithTtlBO implements Serializable {
|
|||||||
this.ttl = ttl;
|
this.ttl = ttl;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCacheName() {
|
|
||||||
return cacheName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCacheName(String cacheName) {
|
|
||||||
this.cacheName = cacheName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTtl() {
|
|
||||||
return ttl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTtl(Integer ttl) {
|
|
||||||
this.ttl = ttl;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "CacheNameWithTtlBO{" + "cacheName='" + cacheName + '\'' + ", ttl=" + ttl + '}';
|
return "CacheNameWithTtlBO{" + "cacheName='" + cacheName + '\'' + ", ttl=" + ttl + '}';
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.common.cache.bo;
|
package com.tmerclub.cloud.common.cache.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.cache.enums.MultiStockEnum;
|
import com.tmerclub.cloud.common.cache.enums.MultiStockEnum;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +11,8 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author LGH
|
* @author LGH
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MultiDecrementBO implements Serializable {
|
public class MultiDecrementBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -85,108 +89,4 @@ public class MultiDecrementBO implements Serializable {
|
|||||||
this.cachePrefix = multiStockEnum.value();
|
this.cachePrefix = multiStockEnum.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getStockPointId() {
|
|
||||||
return stockPointId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStockPointId(Long stockPointId) {
|
|
||||||
this.stockPointId = stockPointId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<String> getStockPointList() {
|
|
||||||
return stockPointList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStockPointList(List<String> stockPointList) {
|
|
||||||
this.stockPointList = stockPointList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public MultiStockEnum getMultiStockEnum() {
|
|
||||||
return multiStockEnum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMultiStockEnum(MultiStockEnum multiStockEnum) {
|
|
||||||
this.multiStockEnum = multiStockEnum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityId() {
|
|
||||||
return activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityId(Long activityId) {
|
|
||||||
this.activityId = activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdCount() {
|
|
||||||
return prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdCount(Integer prodCount) {
|
|
||||||
this.prodCount = prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getMaxNum() {
|
|
||||||
return maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxNum(Integer maxNum) {
|
|
||||||
this.maxNum = maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrderInfo() {
|
|
||||||
return orderInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderInfo(String orderInfo) {
|
|
||||||
this.orderInfo = orderInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCachePrefix() {
|
|
||||||
return cachePrefix;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCachePrefix(String cachePrefix) {
|
|
||||||
this.cachePrefix = cachePrefix;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MultiDecrementBO{" +
|
|
||||||
"multiStockEnum=" + multiStockEnum +
|
|
||||||
", userId=" + userId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", activityId=" + activityId +
|
|
||||||
", skuId=" + skuId +
|
|
||||||
", prodCount=" + prodCount +
|
|
||||||
", maxNum=" + maxNum +
|
|
||||||
", orderInfo='" + orderInfo + '\'' +
|
|
||||||
", cachePrefix='" + cachePrefix + '\'' +
|
|
||||||
", stockPointList=" + stockPointList +
|
|
||||||
", stockPointId='" + stockPointId + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package com.tmerclub.cloud.common.cache.bo;
|
package com.tmerclub.cloud.common.cache.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@ -12,6 +14,8 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
@ConfigurationProperties(prefix = "redis.multi")
|
@ConfigurationProperties(prefix = "redis.multi")
|
||||||
@Component
|
@Component
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MultiRedisBO implements Serializable {
|
public class MultiRedisBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,36 +25,5 @@ public class MultiRedisBO implements Serializable {
|
|||||||
|
|
||||||
private Integer database;
|
private Integer database;
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPassword(String password) {
|
|
||||||
this.password = password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDatabase() {
|
|
||||||
return database;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDatabase(Integer database) {
|
|
||||||
this.database = database;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<String> getRedisAddrs() {
|
|
||||||
return redisAddrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRedisAddrs(List<String> redisAddrs) {
|
|
||||||
this.redisAddrs = redisAddrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MultiRedisBO{" +
|
|
||||||
"password='" + password + '\'' +
|
|
||||||
", redisAddrs=" + redisAddrs +
|
|
||||||
", database=" + database +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.dto;
|
package com.tmerclub.cloud.common.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.Date;
|
|||||||
*
|
*
|
||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class BaseDTO implements Serializable {
|
public class BaseDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -29,25 +33,4 @@ public class BaseDTO implements Serializable {
|
|||||||
@Schema(description = "更新时间")
|
@Schema(description = "更新时间")
|
||||||
protected Date updateTime;
|
protected Date updateTime;
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "BaseDTO{" + "createTime=" + createTime + ", updateTime=" + updateTime + '}';
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.vo;
|
package com.tmerclub.cloud.common.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -9,6 +12,8 @@ import java.util.Date;
|
|||||||
* 时间参数
|
* 时间参数
|
||||||
* @author lhd
|
* @author lhd
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class DateVO implements Serializable {
|
public class DateVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -16,27 +21,5 @@ public class DateVO implements Serializable {
|
|||||||
|
|
||||||
private Date endTime;
|
private Date endTime;
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "DateVO{" +
|
|
||||||
"startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.vo;
|
package com.tmerclub.cloud.common.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2022-06-22 17:09:12
|
* @date 2022-06-22 17:09:12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -63,57 +67,5 @@ public class ShopSubstituteSalesVO extends BaseVO implements Serializable {
|
|||||||
this.shopSubstituteSalesId = shopSubstituteSalesId;
|
this.shopSubstituteSalesId = shopSubstituteSalesId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesType() {
|
|
||||||
return salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesType(Integer salesType) {
|
|
||||||
this.salesType = salesType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSalesPriceType() {
|
|
||||||
return salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPriceType(Integer salesPriceType) {
|
|
||||||
this.salesPriceType = salesPriceType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSalesPrice() {
|
|
||||||
return salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSalesPrice(Long salesPrice) {
|
|
||||||
this.salesPrice = salesPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getModifier() {
|
|
||||||
return modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModifier(Long modifier) {
|
|
||||||
this.modifier = modifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopSubstituteSalesVO{" +
|
|
||||||
"shopSubstituteSalesId=" + shopSubstituteSalesId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", salesType=" + salesType +
|
|
||||||
", salesPriceType=" + salesPriceType +
|
|
||||||
", orderShape=" + orderShape +
|
|
||||||
", salesPrice=" + salesPrice +
|
|
||||||
", modifier=" + modifier +
|
|
||||||
", automaticOff=" + automaticOff +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.database.vo;
|
package com.tmerclub.cloud.common.database.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +13,8 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/9/8
|
* @date 2020/9/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class PageVO<T> implements Serializable {
|
public class PageVO<T> implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -23,36 +27,5 @@ public class PageVO<T> implements Serializable {
|
|||||||
@Schema(description = "结果集")
|
@Schema(description = "结果集")
|
||||||
private List<T> list;
|
private List<T> list;
|
||||||
|
|
||||||
public Integer getPages() {
|
|
||||||
return pages;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPages(Integer pages) {
|
|
||||||
this.pages = pages;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotal() {
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotal(Long total) {
|
|
||||||
this.total = total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> getList() {
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setList(List<T> list) {
|
|
||||||
this.list = list;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PageVO{" +
|
|
||||||
", pages=" + pages +
|
|
||||||
", total=" + total +
|
|
||||||
", list=" + list +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.mongodb.bo.order;
|
package com.tmerclub.cloud.common.mongodb.bo.order;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -23,6 +25,8 @@ import java.util.List;
|
|||||||
@CompoundIndex(name = "station_idx", def = "{'stationId':1}")
|
@CompoundIndex(name = "station_idx", def = "{'stationId':1}")
|
||||||
})
|
})
|
||||||
@Document("order")
|
@Document("order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoOrderBO implements Serializable {
|
public class MongoOrderBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -385,739 +389,5 @@ public class MongoOrderBO implements Serializable {
|
|||||||
@Schema(description = "核销订单", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "核销订单", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
private List<MongoOrderVirtualInfoBO> orderVirtualInfoList;
|
private List<MongoOrderVirtualInfoBO> orderVirtualInfoList;
|
||||||
|
|
||||||
public Integer getWriteOffCount() {
|
|
||||||
return writeOffCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffCount(Integer writeOffCount) {
|
|
||||||
this.writeOffCount = writeOffCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopComboAmount() {
|
|
||||||
return shopComboAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopComboAmount(Long shopComboAmount) {
|
|
||||||
this.shopComboAmount = shopComboAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<MongoOrderVirtualInfoBO> getOrderVirtualInfoList() {
|
|
||||||
return orderVirtualInfoList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderVirtualInfoList(List<MongoOrderVirtualInfoBO> orderVirtualInfoList) {
|
|
||||||
this.orderVirtualInfoList = orderVirtualInfoList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffStatus(Integer writeOffStatus) {
|
|
||||||
this.writeOffStatus = writeOffStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffStatus() {
|
|
||||||
return writeOffStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffNum() {
|
|
||||||
return writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffNum(Integer writeOffNum) {
|
|
||||||
this.writeOffNum = writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffMultipleCount() {
|
|
||||||
return writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffMultipleCount(Integer writeOffMultipleCount) {
|
|
||||||
this.writeOffMultipleCount = writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffStart() {
|
|
||||||
return writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffStart(Date writeOffStart) {
|
|
||||||
this.writeOffStart = writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffEnd() {
|
|
||||||
return writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffEnd(Date writeOffEnd) {
|
|
||||||
this.writeOffEnd = writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getStationCode() {
|
|
||||||
return stationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationCode(String stationCode) {
|
|
||||||
this.stationCode = stationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStationId() {
|
|
||||||
return stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationId(Long stationId) {
|
|
||||||
this.stationId = stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuCodes() {
|
|
||||||
return spuCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuCodes(String spuCodes) {
|
|
||||||
this.spuCodes = spuCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPartyCodes() {
|
|
||||||
return partyCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPartyCodes(String partyCodes) {
|
|
||||||
this.partyCodes = partyCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSupplierDeliveryType() {
|
|
||||||
return supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierDeliveryType(Integer supplierDeliveryType) {
|
|
||||||
this.supplierDeliveryType = supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchaseSpreadAmount() {
|
|
||||||
return purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseSpreadAmount(Long purchaseSpreadAmount) {
|
|
||||||
this.purchaseSpreadAmount = purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWaitPurchase() {
|
|
||||||
return waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWaitPurchase(Integer waitPurchase) {
|
|
||||||
this.waitPurchase = waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<MongoOrderItemBO> getOrderItems() {
|
|
||||||
return orderItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderItems(List<MongoOrderItemBO> orderItems) {
|
|
||||||
this.orderItems = orderItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActualTotal() {
|
|
||||||
return actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActualTotal(Long actualTotal) {
|
|
||||||
this.actualTotal = actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderScore() {
|
|
||||||
return orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderScore(Long orderScore) {
|
|
||||||
this.orderScore = orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderType() {
|
|
||||||
return orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderType(Integer orderType) {
|
|
||||||
this.orderType = orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundStatus() {
|
|
||||||
return refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundStatus(Integer refundStatus) {
|
|
||||||
this.refundStatus = refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeliveryType() {
|
|
||||||
return deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryType(Integer deliveryType) {
|
|
||||||
this.deliveryType = deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreightAmount() {
|
|
||||||
return freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreightAmount(Long freightAmount) {
|
|
||||||
this.freightAmount = freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllCount() {
|
|
||||||
return allCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllCount(Integer allCount) {
|
|
||||||
this.allCount = allCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderInvoiceId() {
|
|
||||||
return orderInvoiceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderInvoiceId(Long orderInvoiceId) {
|
|
||||||
this.orderInvoiceId = orderInvoiceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConsignee() {
|
|
||||||
return consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConsignee(String consignee) {
|
|
||||||
this.consignee = consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderAddrId() {
|
|
||||||
return orderAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderAddrId(Long orderAddrId) {
|
|
||||||
this.orderAddrId = orderAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotal() {
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotal(Long total) {
|
|
||||||
this.total = total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopRemarks() {
|
|
||||||
return shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRemarks(String shopRemarks) {
|
|
||||||
this.shopRemarks = shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayType() {
|
|
||||||
return payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayType(Integer payType) {
|
|
||||||
this.payType = payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCloseType() {
|
|
||||||
return closeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCloseType(Integer closeType) {
|
|
||||||
this.closeType = closeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPayTime() {
|
|
||||||
return payTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayTime(Date payTime) {
|
|
||||||
this.payTime = payTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getDeliveryTime() {
|
|
||||||
return deliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryTime(Date deliveryTime) {
|
|
||||||
this.deliveryTime = deliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getFinallyTime() {
|
|
||||||
return finallyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFinallyTime(Date finallyTime) {
|
|
||||||
this.finallyTime = finallyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCancelTime() {
|
|
||||||
return cancelTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCancelTime(Date cancelTime) {
|
|
||||||
this.cancelTime = cancelTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBookTime() {
|
|
||||||
return bookTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBookTime(Date bookTime) {
|
|
||||||
this.bookTime = bookTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPayed() {
|
|
||||||
return isPayed;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPayed(Integer isPayed) {
|
|
||||||
this.isPayed = isPayed;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeleteStatus() {
|
|
||||||
return deleteStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeleteStatus(Integer deleteStatus) {
|
|
||||||
this.deleteStatus = deleteStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getScoreAmount() {
|
|
||||||
return scoreAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setScoreAmount(Long scoreAmount) {
|
|
||||||
this.scoreAmount = scoreAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getMemberAmount() {
|
|
||||||
return memberAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMemberAmount(Long memberAmount) {
|
|
||||||
this.memberAmount = memberAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCouponAmount() {
|
|
||||||
return platformCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCouponAmount(Long platformCouponAmount) {
|
|
||||||
this.platformCouponAmount = platformCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCouponAmount() {
|
|
||||||
return shopCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCouponAmount(Long shopCouponAmount) {
|
|
||||||
this.shopCouponAmount = shopCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDiscountAmount() {
|
|
||||||
return discountAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDiscountAmount(Long discountAmount) {
|
|
||||||
this.discountAmount = discountAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformAmount() {
|
|
||||||
return platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformAmount(Long platformAmount) {
|
|
||||||
this.platformAmount = platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getReduceAmount() {
|
|
||||||
return reduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReduceAmount(Long reduceAmount) {
|
|
||||||
this.reduceAmount = reduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getUpdateTime() {
|
|
||||||
return updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUpdateTime(Date updateTime) {
|
|
||||||
this.updateTime = updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopChangeFreeAmount() {
|
|
||||||
return shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopChangeFreeAmount(Long shopChangeFreeAmount) {
|
|
||||||
this.shopChangeFreeAmount = shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreeFreightAmount() {
|
|
||||||
return freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreeFreightAmount(Long freeFreightAmount) {
|
|
||||||
this.freeFreightAmount = freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformFreeFreightAmount() {
|
|
||||||
return platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformFreeFreightAmount(Long platformFreeFreightAmount) {
|
|
||||||
this.platformFreeFreightAmount = platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCityId() {
|
|
||||||
return cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCityId(Long cityId) {
|
|
||||||
this.cityId = cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAreaId() {
|
|
||||||
return areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAreaId(Long areaId) {
|
|
||||||
this.areaId = areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getArea() {
|
|
||||||
return area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArea(String area) {
|
|
||||||
this.area = area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAddr() {
|
|
||||||
return addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddr(String addr) {
|
|
||||||
this.addr = addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPostCode() {
|
|
||||||
return postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostCode(String postCode) {
|
|
||||||
this.postCode = postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserType() {
|
|
||||||
return userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserType(Integer userType) {
|
|
||||||
this.userType = userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFirstOrder() {
|
|
||||||
return firstOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstOrder(Integer firstOrder) {
|
|
||||||
this.firstOrder = firstOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsSettled() {
|
|
||||||
return isSettled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsSettled(Integer isSettled) {
|
|
||||||
this.isSettled = isSettled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFirstSupplierOrder() {
|
|
||||||
return firstSupplierOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstSupplierOrder(Integer firstSupplierOrder) {
|
|
||||||
this.firstSupplierOrder = firstSupplierOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCommission() {
|
|
||||||
return platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCommission(Long platformCommission) {
|
|
||||||
this.platformCommission = platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleType() {
|
|
||||||
return preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleType(Integer preSaleType) {
|
|
||||||
this.preSaleType = preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderMold() {
|
|
||||||
return orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderMold(Integer orderMold) {
|
|
||||||
this.orderMold = orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDepositAmount() {
|
|
||||||
return depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDepositAmount(Long depositAmount) {
|
|
||||||
this.depositAmount = depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBalanceAmount() {
|
|
||||||
return balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceAmount(Long balanceAmount) {
|
|
||||||
this.balanceAmount = balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleDeliveryType() {
|
|
||||||
return preSaleDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleDeliveryType(Integer preSaleDeliveryType) {
|
|
||||||
this.preSaleDeliveryType = preSaleDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPreSaleDeliveryTime() {
|
|
||||||
return preSaleDeliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleDeliveryTime(Date preSaleDeliveryTime) {
|
|
||||||
this.preSaleDeliveryTime = preSaleDeliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBalanceStartTime() {
|
|
||||||
return balanceStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceStartTime(Date balanceStartTime) {
|
|
||||||
this.balanceStartTime = balanceStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBalanceEndTime() {
|
|
||||||
return balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceEndTime(Date balanceEndTime) {
|
|
||||||
this.balanceEndTime = balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayId() {
|
|
||||||
return payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayId(String payId) {
|
|
||||||
this.payId = payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("AlibabaMethodTooLong")
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoOrderBO{" +
|
|
||||||
"orderItems=" + orderItems +
|
|
||||||
", userId=" + userId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", actualTotal=" + actualTotal +
|
|
||||||
", status=" + status +
|
|
||||||
", orderScore=" + orderScore +
|
|
||||||
", orderType=" + orderType +
|
|
||||||
", refundStatus=" + refundStatus +
|
|
||||||
", deliveryType=" + deliveryType +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", freightAmount=" + freightAmount +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", allCount=" + allCount +
|
|
||||||
", orderInvoiceId=" + orderInvoiceId +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", consignee='" + consignee + '\'' +
|
|
||||||
", mobile='" + mobile + '\'' +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", waitPurchase=" + waitPurchase +
|
|
||||||
", platformFreeFreightAmount=" + platformFreeFreightAmount +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", platformCommission=" + platformCommission +
|
|
||||||
", orderAddrId=" + orderAddrId +
|
|
||||||
", total=" + total +
|
|
||||||
", shopRemarks='" + shopRemarks + '\'' +
|
|
||||||
", payType=" + payType +
|
|
||||||
", closeType=" + closeType +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", payTime=" + payTime +
|
|
||||||
", deliveryTime=" + deliveryTime +
|
|
||||||
", finallyTime=" + finallyTime +
|
|
||||||
", cancelTime=" + cancelTime +
|
|
||||||
", bookTime=" + bookTime +
|
|
||||||
", isPayed=" + isPayed +
|
|
||||||
", deleteStatus=" + deleteStatus +
|
|
||||||
", scoreAmount=" + scoreAmount +
|
|
||||||
", memberAmount=" + memberAmount +
|
|
||||||
", platformCouponAmount=" + platformCouponAmount +
|
|
||||||
", shopCouponAmount=" + shopCouponAmount +
|
|
||||||
", discountAmount=" + discountAmount +
|
|
||||||
", platformAmount=" + platformAmount +
|
|
||||||
", reduceAmount=" + reduceAmount +
|
|
||||||
", shopChangeFreeAmount=" + shopChangeFreeAmount +
|
|
||||||
", freeFreightAmount=" + freeFreightAmount +
|
|
||||||
", supplierDeliveryType=" + supplierDeliveryType +
|
|
||||||
", purchaseSpreadAmount=" + purchaseSpreadAmount +
|
|
||||||
", spuCodes='" + spuCodes + '\'' +
|
|
||||||
", partyCodes='" + partyCodes + '\'' +
|
|
||||||
", isSettled=" + isSettled +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", province='" + province + '\'' +
|
|
||||||
", cityId=" + cityId +
|
|
||||||
", city='" + city + '\'' +
|
|
||||||
", areaId=" + areaId +
|
|
||||||
", area='" + area + '\'' +
|
|
||||||
", addr='" + addr + '\'' +
|
|
||||||
", postCode='" + postCode + '\'' +
|
|
||||||
", userType=" + userType +
|
|
||||||
", firstOrder=" + firstOrder +
|
|
||||||
", firstSupplierOrder=" + firstSupplierOrder +
|
|
||||||
", preSaleType=" + preSaleType +
|
|
||||||
", orderMold=" + orderMold +
|
|
||||||
", depositAmount=" + depositAmount +
|
|
||||||
", balanceAmount=" + balanceAmount +
|
|
||||||
", preSaleDeliveryType=" + preSaleDeliveryType +
|
|
||||||
", preSaleDeliveryTime=" + preSaleDeliveryTime +
|
|
||||||
", balanceStartTime=" + balanceStartTime +
|
|
||||||
", balanceEndTime=" + balanceEndTime +
|
|
||||||
", stationId=" + stationId +
|
|
||||||
", payId='" + payId + '\'' +
|
|
||||||
", stationCode='" + stationCode + '\'' +
|
|
||||||
", writeOffNum=" + writeOffNum +
|
|
||||||
", writeOffMultipleCount=" + writeOffMultipleCount +
|
|
||||||
", writeOffStart=" + writeOffStart +
|
|
||||||
", writeOffEnd=" + writeOffEnd +
|
|
||||||
", writeOffStatus=" + writeOffStatus +
|
|
||||||
", shopComboAmount=" + shopComboAmount +
|
|
||||||
", orderVirtualInfoList=" + orderVirtualInfoList +
|
|
||||||
", writeOffCount=" + writeOffCount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.mongodb.bo.order;
|
package com.tmerclub.cloud.common.mongodb.bo.order;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -9,6 +12,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2022/8/23
|
* @date 2022/8/23
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoOrderItemBO implements Serializable {
|
public class MongoOrderItemBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -233,405 +238,5 @@ public class MongoOrderItemBO implements Serializable {
|
|||||||
private Long purchasePlatformCommission;
|
private Long purchasePlatformCommission;
|
||||||
|
|
||||||
|
|
||||||
public String getSupplierPic() {
|
|
||||||
return supplierPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierPic(String supplierPic) {
|
|
||||||
this.supplierPic = supplierPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSpuNameZh() {
|
|
||||||
return supplierSpuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuNameZh(String supplierSpuNameZh) {
|
|
||||||
this.supplierSpuNameZh = supplierSpuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSpuNameEn() {
|
|
||||||
return supplierSpuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuNameEn(String supplierSpuNameEn) {
|
|
||||||
this.supplierSpuNameEn = supplierSpuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSkuNameZh() {
|
|
||||||
return supplierSkuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSkuNameZh(String supplierSkuNameZh) {
|
|
||||||
this.supplierSkuNameZh = supplierSkuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSkuNameEn() {
|
|
||||||
return supplierSkuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSkuNameEn(String supplierSkuNameEn) {
|
|
||||||
this.supplierSkuNameEn = supplierSkuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPic() {
|
|
||||||
return pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPic(String pic) {
|
|
||||||
this.pic = pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUseScore() {
|
|
||||||
return useScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUseScore(Long useScore) {
|
|
||||||
this.useScore = useScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderItemId() {
|
|
||||||
return orderItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderItemId(Long orderItemId) {
|
|
||||||
this.orderItemId = orderItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrimaryCategoryId() {
|
|
||||||
return primaryCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrimaryCategoryId(Long primaryCategoryId) {
|
|
||||||
this.primaryCategoryId = primaryCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFinalRefundId() {
|
|
||||||
return finalRefundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFinalRefundId(Long finalRefundId) {
|
|
||||||
this.finalRefundId = finalRefundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionUserId() {
|
|
||||||
return distributionUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionUserId(Long distributionUserId) {
|
|
||||||
this.distributionUserId = distributionUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsComm() {
|
|
||||||
return isComm;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsComm(Integer isComm) {
|
|
||||||
this.isComm = isComm;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCommTime() {
|
|
||||||
return commTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCommTime(Date commTime) {
|
|
||||||
this.commTime = commTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundStatus() {
|
|
||||||
return refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundStatus(Integer refundStatus) {
|
|
||||||
this.refundStatus = refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getBeDeliveredNum() {
|
|
||||||
return beDeliveredNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBeDeliveredNum(Integer beDeliveredNum) {
|
|
||||||
this.beDeliveredNum = beDeliveredNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeliveryType() {
|
|
||||||
return deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryType(Integer deliveryType) {
|
|
||||||
this.deliveryType = deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getShopCartTime() {
|
|
||||||
return shopCartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCartTime(Date shopCartTime) {
|
|
||||||
this.shopCartTime = shopCartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuTotalAmount() {
|
|
||||||
return spuTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuTotalAmount(Long spuTotalAmount) {
|
|
||||||
this.spuTotalAmount = spuTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActualTotal() {
|
|
||||||
return actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActualTotal(Long actualTotal) {
|
|
||||||
this.actualTotal = actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareReduce() {
|
|
||||||
return shareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareReduce(Long shareReduce) {
|
|
||||||
this.shareReduce = shareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformShareReduce() {
|
|
||||||
return platformShareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformShareReduce(Long platformShareReduce) {
|
|
||||||
this.platformShareReduce = platformShareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionParentAmount() {
|
|
||||||
return distributionParentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionParentAmount(Long distributionParentAmount) {
|
|
||||||
this.distributionParentAmount = distributionParentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGainScore() {
|
|
||||||
return gainScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGainScore(Long gainScore) {
|
|
||||||
this.gainScore = gainScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopChangeFreeAmount() {
|
|
||||||
return shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopChangeFreeAmount(Long shopChangeFreeAmount) {
|
|
||||||
this.shopChangeFreeAmount = shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreeFreightAmount() {
|
|
||||||
return freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreeFreightAmount(Long freeFreightAmount) {
|
|
||||||
this.freeFreightAmount = freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuNameZh() {
|
|
||||||
return spuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuNameZh(String spuNameZh) {
|
|
||||||
this.spuNameZh = spuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuNameEn() {
|
|
||||||
return spuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuNameEn(String spuNameEn) {
|
|
||||||
this.spuNameEn = spuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuNameZh() {
|
|
||||||
return skuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuNameZh(String skuNameZh) {
|
|
||||||
this.skuNameZh = skuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuNameEn() {
|
|
||||||
return skuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuNameEn(String skuNameEn) {
|
|
||||||
this.skuNameEn = skuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getScoreFee() {
|
|
||||||
return scoreFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setScoreFee(Long scoreFee) {
|
|
||||||
this.scoreFee = scoreFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuCode() {
|
|
||||||
return spuCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuCode(String spuCode) {
|
|
||||||
this.spuCode = spuCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPartyCode() {
|
|
||||||
return partyCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPartyCode(String partyCode) {
|
|
||||||
this.partyCode = partyCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGiveawayAmount() {
|
|
||||||
return giveawayAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGiveawayAmount(Long giveawayAmount) {
|
|
||||||
this.giveawayAmount = giveawayAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityId() {
|
|
||||||
return activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityId(Long activityId) {
|
|
||||||
this.activityId = activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getActivityType() {
|
|
||||||
return activityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityType(Integer activityType) {
|
|
||||||
this.activityType = activityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchasePlatformCommission() {
|
|
||||||
return purchasePlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchasePlatformCommission(Long purchasePlatformCommission) {
|
|
||||||
this.purchasePlatformCommission = purchasePlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoOrderItemBO{" +
|
|
||||||
"pic='" + pic + '\'' +
|
|
||||||
", count=" + count +
|
|
||||||
", price=" + price +
|
|
||||||
", useScore=" + useScore +
|
|
||||||
", skuId=" + skuId +
|
|
||||||
", orderItemId=" + orderItemId +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", primaryCategoryId=" + primaryCategoryId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", scoreFee=" + scoreFee +
|
|
||||||
", spuNameZh='" + spuNameZh + '\'' +
|
|
||||||
", spuNameEn='" + spuNameEn + '\'' +
|
|
||||||
", skuNameZh='" + skuNameZh + '\'' +
|
|
||||||
", skuNameEn='" + skuNameEn + '\'' +
|
|
||||||
", supplierSpuNameZh='" + supplierSpuNameZh + '\'' +
|
|
||||||
", supplierSpuNameEn='" + supplierSpuNameEn + '\'' +
|
|
||||||
", supplierSkuNameZh='" + supplierSkuNameZh + '\'' +
|
|
||||||
", supplierSkuNameEn='" + supplierSkuNameEn + '\'' +
|
|
||||||
", supplierPic=" + supplierPic + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", finalRefundId=" + finalRefundId +
|
|
||||||
", distributionUserId=" + distributionUserId +
|
|
||||||
", isComm=" + isComm +
|
|
||||||
", commTime=" + commTime +
|
|
||||||
", refundStatus=" + refundStatus +
|
|
||||||
", beDeliveredNum=" + beDeliveredNum +
|
|
||||||
", deliveryType=" + deliveryType +
|
|
||||||
", shopCartTime=" + shopCartTime +
|
|
||||||
", spuTotalAmount=" + spuTotalAmount +
|
|
||||||
", actualTotal=" + actualTotal +
|
|
||||||
", shareReduce=" + shareReduce +
|
|
||||||
", platformShareReduce=" + platformShareReduce +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", distributionParentAmount=" + distributionParentAmount +
|
|
||||||
", gainScore=" + gainScore +
|
|
||||||
", shopChangeFreeAmount=" + shopChangeFreeAmount +
|
|
||||||
", freeFreightAmount=" + freeFreightAmount +
|
|
||||||
", spuCode='" + spuCode + '\'' +
|
|
||||||
", partyCode='" + partyCode + '\'' +
|
|
||||||
", giveawayAmount=" + giveawayAmount +
|
|
||||||
", activityId=" + activityId +
|
|
||||||
", activityType=" + activityType +
|
|
||||||
", purchasePlatformCommission=" + purchasePlatformCommission +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.common.mongodb.bo.order;
|
package com.tmerclub.cloud.common.mongodb.bo.order;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.util.Date;
|
|||||||
/**
|
/**
|
||||||
* @author lanhai
|
* @author lanhai
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoOrderVirtualInfoBO implements Serializable {
|
public class MongoOrderVirtualInfoBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -35,81 +39,5 @@ public class MongoOrderVirtualInfoBO implements Serializable {
|
|||||||
@Schema(description = "剩余核销次数 -1.无限次")
|
@Schema(description = "剩余核销次数 -1.无限次")
|
||||||
private Integer writeOffMultipleCount;
|
private Integer writeOffMultipleCount;
|
||||||
|
|
||||||
public Long getOrderVirtualInfoId() {
|
|
||||||
return orderVirtualInfoId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderVirtualInfoId(Long orderVirtualInfoId) {
|
|
||||||
this.orderVirtualInfoId = orderVirtualInfoId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStationId() {
|
|
||||||
return stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationId(Long stationId) {
|
|
||||||
this.stationId = stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getWriteOffCode() {
|
|
||||||
return writeOffCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffCode(String writeOffCode) {
|
|
||||||
this.writeOffCode = writeOffCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsWriteOff() {
|
|
||||||
return isWriteOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsWriteOff(Integer isWriteOff) {
|
|
||||||
this.isWriteOff = isWriteOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffTime() {
|
|
||||||
return writeOffTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffTime(Date writeOffTime) {
|
|
||||||
this.writeOffTime = writeOffTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffMultipleCount() {
|
|
||||||
return writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffMultipleCount(Integer writeOffMultipleCount) {
|
|
||||||
this.writeOffMultipleCount = writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OrderVirtualInfoVO{" +
|
|
||||||
"orderVirtualInfoId=" + orderVirtualInfoId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", stationId=" + stationId +
|
|
||||||
", writeOffCode='" + writeOffCode + '\'' +
|
|
||||||
", isWriteOff=" + isWriteOff +
|
|
||||||
", writeOffTime=" + writeOffTime +
|
|
||||||
", writeOffMultipleCount=" + writeOffMultipleCount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.order.vo.ShopCartOrderMergerVO;
|
import com.tmerclub.cloud.common.order.vo.ShopCartOrderMergerVO;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author xxw
|
* @author xxw
|
||||||
* @date 2022/9/7 11:35
|
* @date 2022/9/7 11:35
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ComboOrderNotifyBO implements Serializable {
|
public class ComboOrderNotifyBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -23,27 +27,5 @@ public class ComboOrderNotifyBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|
||||||
public ShopCartOrderMergerVO getShopCartOrderMergerVO() {
|
|
||||||
return shopCartOrderMergerVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCartOrderMergerVO(ShopCartOrderMergerVO shopCartOrderMergerVO) {
|
|
||||||
this.shopCartOrderMergerVO = shopCartOrderMergerVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ComboOrderNotifyBO{" +
|
|
||||||
"shopCartOrderMergerVO=" + shopCartOrderMergerVO +
|
|
||||||
", userId=" + userId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/12/8
|
* @date 2020/12/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class DeliveryModeBO implements Serializable {
|
public class DeliveryModeBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -33,36 +37,5 @@ public class DeliveryModeBO implements Serializable {
|
|||||||
@Schema(description = "同城配送", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "同城配送", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
private Boolean hasCityDelivery;
|
private Boolean hasCityDelivery;
|
||||||
|
|
||||||
public Boolean getHasUserPickUp() {
|
|
||||||
return hasUserPickUp;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasUserPickUp(Boolean hasUserPickUp) {
|
|
||||||
this.hasUserPickUp = hasUserPickUp;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getHasShopDelivery() {
|
|
||||||
return hasShopDelivery;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasShopDelivery(Boolean hasShopDelivery) {
|
|
||||||
this.hasShopDelivery = hasShopDelivery;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getHasCityDelivery() {
|
|
||||||
return hasCityDelivery;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasCityDelivery(Boolean hasCityDelivery) {
|
|
||||||
this.hasCityDelivery = hasCityDelivery;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "DeliveryModeBO{" +
|
|
||||||
"hasUserPickUp=" + hasUserPickUp +
|
|
||||||
", hasShopDelivery=" + hasShopDelivery +
|
|
||||||
", hasCityDelivery=" + hasCityDelivery +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021/2/5
|
* @date 2021/2/5
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class EsOrderBO implements Serializable {
|
public class EsOrderBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -382,756 +386,5 @@ public class EsOrderBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long mainOrderId;
|
private Long mainOrderId;
|
||||||
|
|
||||||
public Long getMainOrderId() {
|
|
||||||
return mainOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMainOrderId(Long mainOrderId) {
|
|
||||||
this.mainOrderId = mainOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<EsOrderItemBO> getOrderItems() {
|
|
||||||
return orderItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderItems(List<EsOrderItemBO> orderItems) {
|
|
||||||
this.orderItems = orderItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActualTotal() {
|
|
||||||
return actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActualTotal(Long actualTotal) {
|
|
||||||
this.actualTotal = actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderScore() {
|
|
||||||
return orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderScore(Long orderScore) {
|
|
||||||
this.orderScore = orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderType() {
|
|
||||||
return orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderType(Integer orderType) {
|
|
||||||
this.orderType = orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundStatus() {
|
|
||||||
return refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundStatus(Integer refundStatus) {
|
|
||||||
this.refundStatus = refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeliveryType() {
|
|
||||||
return deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryType(Integer deliveryType) {
|
|
||||||
this.deliveryType = deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreightAmount() {
|
|
||||||
return freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreightAmount(Long freightAmount) {
|
|
||||||
this.freightAmount = freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAllCount() {
|
|
||||||
return allCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllCount(Integer allCount) {
|
|
||||||
this.allCount = allCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderInvoiceId() {
|
|
||||||
return orderInvoiceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderInvoiceId(Long orderInvoiceId) {
|
|
||||||
this.orderInvoiceId = orderInvoiceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemarks() {
|
|
||||||
return remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemarks(String remarks) {
|
|
||||||
this.remarks = remarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConsignee() {
|
|
||||||
return consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConsignee(String consignee) {
|
|
||||||
this.consignee = consignee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMobile() {
|
|
||||||
return mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMobile(String mobile) {
|
|
||||||
this.mobile = mobile;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReceivingAddr() {
|
|
||||||
return receivingAddr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReceivingAddr(String receivingAddr) {
|
|
||||||
this.receivingAddr = receivingAddr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPostCode() {
|
|
||||||
return postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPostCode(String postCode) {
|
|
||||||
this.postCode = postCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayId() {
|
|
||||||
return payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayId(String payId) {
|
|
||||||
this.payId = payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWaitPurchase() {
|
|
||||||
return waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWaitPurchase(Integer waitPurchase) {
|
|
||||||
this.waitPurchase = waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformFreeFreightAmount() {
|
|
||||||
return platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformFreeFreightAmount(Long platformFreeFreightAmount) {
|
|
||||||
this.platformFreeFreightAmount = platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCommission() {
|
|
||||||
return platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCommission(Long platformCommission) {
|
|
||||||
this.platformCommission = platformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderAddrId() {
|
|
||||||
return orderAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderAddrId(Long orderAddrId) {
|
|
||||||
this.orderAddrId = orderAddrId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvince() {
|
|
||||||
return province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvince(String province) {
|
|
||||||
this.province = province;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCityId() {
|
|
||||||
return cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCityId(Long cityId) {
|
|
||||||
this.cityId = cityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCity() {
|
|
||||||
return city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCity(String city) {
|
|
||||||
this.city = city;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAreaId() {
|
|
||||||
return areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAreaId(Long areaId) {
|
|
||||||
this.areaId = areaId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getArea() {
|
|
||||||
return area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setArea(String area) {
|
|
||||||
this.area = area;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAddr() {
|
|
||||||
return addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddr(String addr) {
|
|
||||||
this.addr = addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotal() {
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotal(Long total) {
|
|
||||||
this.total = total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopRemarks() {
|
|
||||||
return shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopRemarks(String shopRemarks) {
|
|
||||||
this.shopRemarks = shopRemarks;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayType() {
|
|
||||||
return payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayType(Integer payType) {
|
|
||||||
this.payType = payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCloseType() {
|
|
||||||
return closeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCloseType(Integer closeType) {
|
|
||||||
this.closeType = closeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getUpdateTime() {
|
|
||||||
return updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUpdateTime(Date updateTime) {
|
|
||||||
this.updateTime = updateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPayTime() {
|
|
||||||
return payTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayTime(Date payTime) {
|
|
||||||
this.payTime = payTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getDeliveryTime() {
|
|
||||||
return deliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryTime(Date deliveryTime) {
|
|
||||||
this.deliveryTime = deliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getFinallyTime() {
|
|
||||||
return finallyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFinallyTime(Date finallyTime) {
|
|
||||||
this.finallyTime = finallyTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCancelTime() {
|
|
||||||
return cancelTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCancelTime(Date cancelTime) {
|
|
||||||
this.cancelTime = cancelTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBookTime() {
|
|
||||||
return bookTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBookTime(Date bookTime) {
|
|
||||||
this.bookTime = bookTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPayed() {
|
|
||||||
return isPayed;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPayed(Integer isPayed) {
|
|
||||||
this.isPayed = isPayed;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeleteStatus() {
|
|
||||||
return deleteStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeleteStatus(Integer deleteStatus) {
|
|
||||||
this.deleteStatus = deleteStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getScoreAmount() {
|
|
||||||
return scoreAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setScoreAmount(Long scoreAmount) {
|
|
||||||
this.scoreAmount = scoreAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getMemberAmount() {
|
|
||||||
return memberAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMemberAmount(Long memberAmount) {
|
|
||||||
this.memberAmount = memberAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformCouponAmount() {
|
|
||||||
return platformCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformCouponAmount(Long platformCouponAmount) {
|
|
||||||
this.platformCouponAmount = platformCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopCouponAmount() {
|
|
||||||
return shopCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCouponAmount(Long shopCouponAmount) {
|
|
||||||
this.shopCouponAmount = shopCouponAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDiscountAmount() {
|
|
||||||
return discountAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDiscountAmount(Long discountAmount) {
|
|
||||||
this.discountAmount = discountAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopComboAmount() {
|
|
||||||
return shopComboAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopComboAmount(Long shopComboAmount) {
|
|
||||||
this.shopComboAmount = shopComboAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformAmount() {
|
|
||||||
return platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformAmount(Long platformAmount) {
|
|
||||||
this.platformAmount = platformAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getReduceAmount() {
|
|
||||||
return reduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReduceAmount(Long reduceAmount) {
|
|
||||||
this.reduceAmount = reduceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopChangeFreeAmount() {
|
|
||||||
return shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopChangeFreeAmount(Long shopChangeFreeAmount) {
|
|
||||||
this.shopChangeFreeAmount = shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreeFreightAmount() {
|
|
||||||
return freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreeFreightAmount(Long freeFreightAmount) {
|
|
||||||
this.freeFreightAmount = freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSupplierDeliveryType() {
|
|
||||||
return supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierDeliveryType(Integer supplierDeliveryType) {
|
|
||||||
this.supplierDeliveryType = supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchaseSpreadAmount() {
|
|
||||||
return purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseSpreadAmount(Long purchaseSpreadAmount) {
|
|
||||||
this.purchaseSpreadAmount = purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuCodes() {
|
|
||||||
return spuCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuCodes(String spuCodes) {
|
|
||||||
this.spuCodes = spuCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPartyCodes() {
|
|
||||||
return partyCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPartyCodes(String partyCodes) {
|
|
||||||
this.partyCodes = partyCodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleType() {
|
|
||||||
return preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleType(Integer preSaleType) {
|
|
||||||
this.preSaleType = preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderMold() {
|
|
||||||
return orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderMold(Integer orderMold) {
|
|
||||||
this.orderMold = orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDepositAmount() {
|
|
||||||
return depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDepositAmount(Long depositAmount) {
|
|
||||||
this.depositAmount = depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBalanceAmount() {
|
|
||||||
return balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceAmount(Long balanceAmount) {
|
|
||||||
this.balanceAmount = balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleDeliveryType() {
|
|
||||||
return preSaleDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleDeliveryType(Integer preSaleDeliveryType) {
|
|
||||||
this.preSaleDeliveryType = preSaleDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getPreSaleDeliveryTime() {
|
|
||||||
return preSaleDeliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleDeliveryTime(Date preSaleDeliveryTime) {
|
|
||||||
this.preSaleDeliveryTime = preSaleDeliveryTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBalanceStartTime() {
|
|
||||||
return balanceStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceStartTime(Date balanceStartTime) {
|
|
||||||
this.balanceStartTime = balanceStartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBalanceEndTime() {
|
|
||||||
return balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceEndTime(Date balanceEndTime) {
|
|
||||||
this.balanceEndTime = balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsSettled() {
|
|
||||||
return isSettled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsSettled(Integer isSettled) {
|
|
||||||
this.isSettled = isSettled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStationId() {
|
|
||||||
return stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationId(Long stationId) {
|
|
||||||
this.stationId = stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getStationCode() {
|
|
||||||
return stationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationCode(String stationCode) {
|
|
||||||
this.stationCode = stationCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffNum() {
|
|
||||||
return writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffNum(Integer writeOffNum) {
|
|
||||||
this.writeOffNum = writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffMultipleCount() {
|
|
||||||
return writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffMultipleCount(Integer writeOffMultipleCount) {
|
|
||||||
this.writeOffMultipleCount = writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffStart() {
|
|
||||||
return writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffStart(Date writeOffStart) {
|
|
||||||
this.writeOffStart = writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffEnd() {
|
|
||||||
return writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffEnd(Date writeOffEnd) {
|
|
||||||
this.writeOffEnd = writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffStatus() {
|
|
||||||
return writeOffStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffStatus(Integer writeOffStatus) {
|
|
||||||
this.writeOffStatus = writeOffStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<EsOrderVirtualInfoBO> getOrderVirtualInfoList() {
|
|
||||||
return orderVirtualInfoList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderVirtualInfoList(List<EsOrderVirtualInfoBO> orderVirtualInfoList) {
|
|
||||||
this.orderVirtualInfoList = orderVirtualInfoList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffCount() {
|
|
||||||
return writeOffCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffCount(Integer writeOffCount) {
|
|
||||||
this.writeOffCount = writeOffCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserType() {
|
|
||||||
return userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserType(Integer userType) {
|
|
||||||
this.userType = userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFirstOrder() {
|
|
||||||
return firstOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstOrder(Integer firstOrder) {
|
|
||||||
this.firstOrder = firstOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFirstSupplierOrder() {
|
|
||||||
return firstSupplierOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstSupplierOrder(Integer firstSupplierOrder) {
|
|
||||||
this.firstSupplierOrder = firstSupplierOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "EsOrderBO{" +
|
|
||||||
"orderItems=" + orderItems +
|
|
||||||
", userId=" + userId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", actualTotal=" + actualTotal +
|
|
||||||
", orderScore=" + orderScore +
|
|
||||||
", status=" + status +
|
|
||||||
", orderType=" + orderType +
|
|
||||||
", refundStatus=" + refundStatus +
|
|
||||||
", deliveryType=" + deliveryType +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", freightAmount=" + freightAmount +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", allCount=" + allCount +
|
|
||||||
", orderInvoiceId=" + orderInvoiceId +
|
|
||||||
", remarks='" + remarks + '\'' +
|
|
||||||
", consignee='" + consignee + '\'' +
|
|
||||||
", mobile='" + mobile + '\'' +
|
|
||||||
", receivingAddr='" + receivingAddr + '\'' +
|
|
||||||
", postCode='" + postCode + '\'' +
|
|
||||||
", payId='" + payId + '\'' +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", waitPurchase=" + waitPurchase +
|
|
||||||
", platformFreeFreightAmount=" + platformFreeFreightAmount +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", platformCommission=" + platformCommission +
|
|
||||||
", orderAddrId=" + orderAddrId +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", province='" + province + '\'' +
|
|
||||||
", cityId=" + cityId +
|
|
||||||
", city='" + city + '\'' +
|
|
||||||
", areaId=" + areaId +
|
|
||||||
", area='" + area + '\'' +
|
|
||||||
", addr='" + addr + '\'' +
|
|
||||||
", total=" + total +
|
|
||||||
", shopRemarks='" + shopRemarks + '\'' +
|
|
||||||
", payType=" + payType +
|
|
||||||
", closeType=" + closeType +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", payTime=" + payTime +
|
|
||||||
", deliveryTime=" + deliveryTime +
|
|
||||||
", finallyTime=" + finallyTime +
|
|
||||||
", cancelTime=" + cancelTime +
|
|
||||||
", bookTime=" + bookTime +
|
|
||||||
", isPayed=" + isPayed +
|
|
||||||
", deleteStatus=" + deleteStatus +
|
|
||||||
", scoreAmount=" + scoreAmount +
|
|
||||||
", memberAmount=" + memberAmount +
|
|
||||||
", platformCouponAmount=" + platformCouponAmount +
|
|
||||||
", shopCouponAmount=" + shopCouponAmount +
|
|
||||||
", discountAmount=" + discountAmount +
|
|
||||||
", shopComboAmount=" + shopComboAmount +
|
|
||||||
", platformAmount=" + platformAmount +
|
|
||||||
", reduceAmount=" + reduceAmount +
|
|
||||||
", shopChangeFreeAmount=" + shopChangeFreeAmount +
|
|
||||||
", freeFreightAmount=" + freeFreightAmount +
|
|
||||||
", supplierDeliveryType=" + supplierDeliveryType +
|
|
||||||
", purchaseSpreadAmount=" + purchaseSpreadAmount +
|
|
||||||
", spuCodes='" + spuCodes + '\'' +
|
|
||||||
", partyCodes='" + partyCodes + '\'' +
|
|
||||||
", preSaleType=" + preSaleType +
|
|
||||||
", orderMold=" + orderMold +
|
|
||||||
", depositAmount=" + depositAmount +
|
|
||||||
", balanceAmount=" + balanceAmount +
|
|
||||||
", preSaleDeliveryType=" + preSaleDeliveryType +
|
|
||||||
", preSaleDeliveryTime=" + preSaleDeliveryTime +
|
|
||||||
", balanceStartTime=" + balanceStartTime +
|
|
||||||
", balanceEndTime=" + balanceEndTime +
|
|
||||||
", isSettled=" + isSettled +
|
|
||||||
", stationId=" + stationId +
|
|
||||||
", stationCode='" + stationCode + '\'' +
|
|
||||||
", writeOffNum=" + writeOffNum +
|
|
||||||
", writeOffMultipleCount=" + writeOffMultipleCount +
|
|
||||||
", writeOffStart=" + writeOffStart +
|
|
||||||
", writeOffEnd=" + writeOffEnd +
|
|
||||||
", writeOffStatus=" + writeOffStatus +
|
|
||||||
", orderVirtualInfoList=" + orderVirtualInfoList +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", writeOffCount=" + writeOffCount +
|
|
||||||
", userType=" + userType +
|
|
||||||
", firstOrder=" + firstOrder +
|
|
||||||
", firstSupplierOrder=" + firstSupplierOrder +
|
|
||||||
", mainOrderId=" + mainOrderId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.common.order.bo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.order.vo.OrderItemLangVO;
|
import com.tmerclub.cloud.common.order.vo.OrderItemLangVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021/2/5
|
* @date 2021/2/5
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class EsOrderItemBO implements Serializable {
|
public class EsOrderItemBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -278,513 +282,5 @@ public class EsOrderItemBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer spuMold;
|
private Integer spuMold;
|
||||||
|
|
||||||
public Integer getSpuMold() {
|
|
||||||
return spuMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuMold(Integer spuMold) {
|
|
||||||
this.spuMold = spuMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getComboName() {
|
|
||||||
return comboName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setComboName(String comboName) {
|
|
||||||
this.comboName = comboName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffNum() {
|
|
||||||
return writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffNum(Integer writeOffNum) {
|
|
||||||
this.writeOffNum = writeOffNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffMultipleCount() {
|
|
||||||
return writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffMultipleCount(Integer writeOffMultipleCount) {
|
|
||||||
this.writeOffMultipleCount = writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffStart() {
|
|
||||||
return writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffStart(Date writeOffStart) {
|
|
||||||
this.writeOffStart = writeOffStart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffEnd() {
|
|
||||||
return writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffEnd(Date writeOffEnd) {
|
|
||||||
this.writeOffEnd = writeOffEnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPic() {
|
|
||||||
return pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPic(String pic) {
|
|
||||||
this.pic = pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuName() {
|
|
||||||
return spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuName(String spuName) {
|
|
||||||
this.spuName = spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUseScore() {
|
|
||||||
return useScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUseScore(Long useScore) {
|
|
||||||
this.useScore = useScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuName() {
|
|
||||||
return skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuName(String skuName) {
|
|
||||||
this.skuName = skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderItemId() {
|
|
||||||
return orderItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderItemId(Long orderItemId) {
|
|
||||||
this.orderItemId = orderItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReturnMoneySts() {
|
|
||||||
return returnMoneySts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReturnMoneySts(Integer returnMoneySts) {
|
|
||||||
this.returnMoneySts = returnMoneySts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getScoreFee() {
|
|
||||||
return scoreFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setScoreFee(Long scoreFee) {
|
|
||||||
this.scoreFee = scoreFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuNameZh() {
|
|
||||||
return spuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuNameZh(String spuNameZh) {
|
|
||||||
this.spuNameZh = spuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuNameEn() {
|
|
||||||
return spuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuNameEn(String spuNameEn) {
|
|
||||||
this.spuNameEn = spuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuNameZh() {
|
|
||||||
return skuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuNameZh(String skuNameZh) {
|
|
||||||
this.skuNameZh = skuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuNameEn() {
|
|
||||||
return skuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuNameEn(String skuNameEn) {
|
|
||||||
this.skuNameEn = skuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSpuNameZh() {
|
|
||||||
return supplierSpuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuNameZh(String supplierSpuNameZh) {
|
|
||||||
this.supplierSpuNameZh = supplierSpuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSpuNameEn() {
|
|
||||||
return supplierSpuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuNameEn(String supplierSpuNameEn) {
|
|
||||||
this.supplierSpuNameEn = supplierSpuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSkuNameZh() {
|
|
||||||
return supplierSkuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSkuNameZh(String supplierSkuNameZh) {
|
|
||||||
this.supplierSkuNameZh = supplierSkuNameZh;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSkuNameEn() {
|
|
||||||
return supplierSkuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSkuNameEn(String supplierSkuNameEn) {
|
|
||||||
this.supplierSkuNameEn = supplierSkuNameEn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierPic() {
|
|
||||||
return supplierPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierPic(String supplierPic) {
|
|
||||||
this.supplierPic = supplierPic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSpuName() {
|
|
||||||
return supplierSpuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuName(String supplierSpuName) {
|
|
||||||
this.supplierSpuName = supplierSpuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSupplierSkuName() {
|
|
||||||
return supplierSkuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSkuName(String supplierSkuName) {
|
|
||||||
this.supplierSkuName = supplierSkuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFinalRefundId() {
|
|
||||||
return finalRefundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFinalRefundId(Long finalRefundId) {
|
|
||||||
this.finalRefundId = finalRefundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionUserId() {
|
|
||||||
return distributionUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionUserId(Long distributionUserId) {
|
|
||||||
this.distributionUserId = distributionUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsComm() {
|
|
||||||
return isComm;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsComm(Integer isComm) {
|
|
||||||
this.isComm = isComm;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCommTime() {
|
|
||||||
return commTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCommTime(Date commTime) {
|
|
||||||
this.commTime = commTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundStatus() {
|
|
||||||
return refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundStatus(Integer refundStatus) {
|
|
||||||
this.refundStatus = refundStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getBeDeliveredNum() {
|
|
||||||
return beDeliveredNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBeDeliveredNum(Integer beDeliveredNum) {
|
|
||||||
this.beDeliveredNum = beDeliveredNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeliveryType() {
|
|
||||||
return deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryType(Integer deliveryType) {
|
|
||||||
this.deliveryType = deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getShopCartTime() {
|
|
||||||
return shopCartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCartTime(Date shopCartTime) {
|
|
||||||
this.shopCartTime = shopCartTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuTotalAmount() {
|
|
||||||
return spuTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuTotalAmount(Long spuTotalAmount) {
|
|
||||||
this.spuTotalAmount = spuTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActualTotal() {
|
|
||||||
return actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActualTotal(Long actualTotal) {
|
|
||||||
this.actualTotal = actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareReduce() {
|
|
||||||
return shareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareReduce(Long shareReduce) {
|
|
||||||
this.shareReduce = shareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformShareReduce() {
|
|
||||||
return platformShareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformShareReduce(Long platformShareReduce) {
|
|
||||||
this.platformShareReduce = platformShareReduce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionAmount() {
|
|
||||||
return distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionAmount(Long distributionAmount) {
|
|
||||||
this.distributionAmount = distributionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDistributionParentAmount() {
|
|
||||||
return distributionParentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDistributionParentAmount(Long distributionParentAmount) {
|
|
||||||
this.distributionParentAmount = distributionParentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGainScore() {
|
|
||||||
return gainScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGainScore(Long gainScore) {
|
|
||||||
this.gainScore = gainScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopChangeFreeAmount() {
|
|
||||||
return shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopChangeFreeAmount(Long shopChangeFreeAmount) {
|
|
||||||
this.shopChangeFreeAmount = shopChangeFreeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getFreeFreightAmount() {
|
|
||||||
return freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreeFreightAmount(Long freeFreightAmount) {
|
|
||||||
this.freeFreightAmount = freeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGiveawayAmount() {
|
|
||||||
return giveawayAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGiveawayAmount(Long giveawayAmount) {
|
|
||||||
this.giveawayAmount = giveawayAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityId() {
|
|
||||||
return activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityId(Long activityId) {
|
|
||||||
this.activityId = activityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getActivityType() {
|
|
||||||
return activityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityType(Integer activityType) {
|
|
||||||
this.activityType = activityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchasePlatformCommission() {
|
|
||||||
return purchasePlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchasePlatformCommission(Long purchasePlatformCommission) {
|
|
||||||
this.purchasePlatformCommission = purchasePlatformCommission;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuCode() {
|
|
||||||
return spuCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuCode(String spuCode) {
|
|
||||||
this.spuCode = spuCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPartyCode() {
|
|
||||||
return partyCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPartyCode(String partyCode) {
|
|
||||||
this.partyCode = partyCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<OrderItemLangVO> getOrderItemLangList() {
|
|
||||||
return orderItemLangList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderItemLangList(List<OrderItemLangVO> orderItemLangList) {
|
|
||||||
this.orderItemLangList = orderItemLangList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrimaryCategoryId() {
|
|
||||||
return primaryCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrimaryCategoryId(Long primaryCategoryId) {
|
|
||||||
this.primaryCategoryId = primaryCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "EsOrderItemBO{" +
|
|
||||||
"pic='" + pic + '\'' +
|
|
||||||
", spuName='" + spuName + '\'' +
|
|
||||||
", count=" + count +
|
|
||||||
", price=" + price +
|
|
||||||
", useScore=" + useScore +
|
|
||||||
", skuId=" + skuId +
|
|
||||||
", skuName='" + skuName + '\'' +
|
|
||||||
", orderItemId=" + orderItemId +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", returnMoneySts=" + returnMoneySts +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", scoreFee=" + scoreFee +
|
|
||||||
", spuNameZh='" + spuNameZh + '\'' +
|
|
||||||
", spuNameEn='" + spuNameEn + '\'' +
|
|
||||||
", skuNameZh='" + skuNameZh + '\'' +
|
|
||||||
", skuNameEn='" + skuNameEn + '\'' +
|
|
||||||
", supplierSpuNameZh='" + supplierSpuNameZh + '\'' +
|
|
||||||
", supplierSpuNameEn='" + supplierSpuNameEn + '\'' +
|
|
||||||
", supplierSkuNameZh='" + supplierSkuNameZh + '\'' +
|
|
||||||
", supplierSkuNameEn='" + supplierSkuNameEn + '\'' +
|
|
||||||
", supplierPic='" + supplierPic + '\'' +
|
|
||||||
", supplierSpuName='" + supplierSpuName + '\'' +
|
|
||||||
", supplierSkuName='" + supplierSkuName + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", finalRefundId=" + finalRefundId +
|
|
||||||
", distributionUserId=" + distributionUserId +
|
|
||||||
", isComm=" + isComm +
|
|
||||||
", commTime=" + commTime +
|
|
||||||
", refundStatus=" + refundStatus +
|
|
||||||
", beDeliveredNum=" + beDeliveredNum +
|
|
||||||
", deliveryType=" + deliveryType +
|
|
||||||
", shopCartTime=" + shopCartTime +
|
|
||||||
", spuTotalAmount=" + spuTotalAmount +
|
|
||||||
", actualTotal=" + actualTotal +
|
|
||||||
", shareReduce=" + shareReduce +
|
|
||||||
", platformShareReduce=" + platformShareReduce +
|
|
||||||
", distributionAmount=" + distributionAmount +
|
|
||||||
", distributionParentAmount=" + distributionParentAmount +
|
|
||||||
", gainScore=" + gainScore +
|
|
||||||
", shopChangeFreeAmount=" + shopChangeFreeAmount +
|
|
||||||
", freeFreightAmount=" + freeFreightAmount +
|
|
||||||
", giveawayAmount=" + giveawayAmount +
|
|
||||||
", activityId=" + activityId +
|
|
||||||
", activityType=" + activityType +
|
|
||||||
", purchasePlatformCommission=" + purchasePlatformCommission +
|
|
||||||
", spuCode='" + spuCode + '\'' +
|
|
||||||
", partyCode='" + partyCode + '\'' +
|
|
||||||
", primaryCategoryId=" + primaryCategoryId +
|
|
||||||
", orderItemLangList=" + orderItemLangList +
|
|
||||||
", comboName='" + comboName + '\'' +
|
|
||||||
", writeOffNum=" + writeOffNum +
|
|
||||||
", writeOffMultipleCount=" + writeOffMultipleCount +
|
|
||||||
", writeOffStart=" + writeOffStart +
|
|
||||||
", writeOffEnd=" + writeOffEnd +
|
|
||||||
", spuMold=" + spuMold +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.util.Date;
|
|||||||
/**
|
/**
|
||||||
* @author lanhai
|
* @author lanhai
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class EsOrderVirtualInfoBO implements Serializable {
|
public class EsOrderVirtualInfoBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -35,81 +39,5 @@ public class EsOrderVirtualInfoBO implements Serializable {
|
|||||||
@Schema(description = "剩余核销次数 -1.无限次")
|
@Schema(description = "剩余核销次数 -1.无限次")
|
||||||
private Integer writeOffMultipleCount;
|
private Integer writeOffMultipleCount;
|
||||||
|
|
||||||
public Long getOrderVirtualInfoId() {
|
|
||||||
return orderVirtualInfoId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderVirtualInfoId(Long orderVirtualInfoId) {
|
|
||||||
this.orderVirtualInfoId = orderVirtualInfoId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStationId() {
|
|
||||||
return stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStationId(Long stationId) {
|
|
||||||
this.stationId = stationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getWriteOffCode() {
|
|
||||||
return writeOffCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffCode(String writeOffCode) {
|
|
||||||
this.writeOffCode = writeOffCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsWriteOff() {
|
|
||||||
return isWriteOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsWriteOff(Integer isWriteOff) {
|
|
||||||
this.isWriteOff = isWriteOff;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getWriteOffTime() {
|
|
||||||
return writeOffTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffTime(Date writeOffTime) {
|
|
||||||
this.writeOffTime = writeOffTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWriteOffMultipleCount() {
|
|
||||||
return writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWriteOffMultipleCount(Integer writeOffMultipleCount) {
|
|
||||||
this.writeOffMultipleCount = writeOffMultipleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OrderVirtualInfoVO{" +
|
|
||||||
"orderVirtualInfoId=" + orderVirtualInfoId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", stationId=" + stationId +
|
|
||||||
", writeOffCode='" + writeOffCode + '\'' +
|
|
||||||
", isWriteOff=" + isWriteOff +
|
|
||||||
", writeOffTime=" + writeOffTime +
|
|
||||||
", writeOffMultipleCount=" + writeOffMultipleCount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
@ -9,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021/04/26
|
* @date 2021/04/26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class OrderIdWithRefundIdBO implements Serializable {
|
public class OrderIdWithRefundIdBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -26,36 +31,5 @@ public class OrderIdWithRefundIdBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OrderIdWithRefundIdBO{" +
|
|
||||||
"refundId=" + refundId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -9,6 +12,8 @@ import java.util.Date;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/12/30
|
* @date 2020/12/30
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class OrderStatusBO implements Serializable {
|
public class OrderStatusBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -68,162 +73,5 @@ public class OrderStatusBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long platformFreeFreightAmount;
|
private Long platformFreeFreightAmount;
|
||||||
|
|
||||||
public Long getFreightAmount() {
|
|
||||||
return freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFreightAmount(Long freightAmount) {
|
|
||||||
this.freightAmount = freightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlatformFreeFreightAmount() {
|
|
||||||
return platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlatformFreeFreightAmount(Long platformFreeFreightAmount) {
|
|
||||||
this.platformFreeFreightAmount = platformFreeFreightAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getBalanceEndTime() {
|
|
||||||
return balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceEndTime(Date balanceEndTime) {
|
|
||||||
this.balanceEndTime = balanceEndTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBalanceAmount() {
|
|
||||||
return balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBalanceAmount(Long balanceAmount) {
|
|
||||||
this.balanceAmount = balanceAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getDepositAmount() {
|
|
||||||
return depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDepositAmount(Long depositAmount) {
|
|
||||||
this.depositAmount = depositAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderMold() {
|
|
||||||
return orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderMold(Integer orderMold) {
|
|
||||||
this.orderMold = orderMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActualTotal() {
|
|
||||||
return actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActualTotal(Long actualTotal) {
|
|
||||||
this.actualTotal = actualTotal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDeliveryType() {
|
|
||||||
return deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliveryType(Integer deliveryType) {
|
|
||||||
this.deliveryType = deliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleType() {
|
|
||||||
return preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleType(Integer preSaleType) {
|
|
||||||
this.preSaleType = preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchaseSpreadAmount() {
|
|
||||||
return purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseSpreadAmount(Long purchaseSpreadAmount) {
|
|
||||||
this.purchaseSpreadAmount = purchaseSpreadAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getWaitPurchase() {
|
|
||||||
return waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWaitPurchase(Integer waitPurchase) {
|
|
||||||
this.waitPurchase = waitPurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderType() {
|
|
||||||
return orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderType(Integer orderType) {
|
|
||||||
this.orderType = orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "OrderStatusBO{" +
|
|
||||||
"orderId=" + orderId +
|
|
||||||
", status=" + status +
|
|
||||||
", deliveryType=" + deliveryType +
|
|
||||||
", orderType=" + orderType +
|
|
||||||
", orderMold=" + orderMold +
|
|
||||||
", userId=" + userId +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", waitPurchase=" + waitPurchase +
|
|
||||||
", actualTotal=" + actualTotal +
|
|
||||||
", purchaseSpreadAmount=" + purchaseSpreadAmount +
|
|
||||||
", balanceAmount=" + balanceAmount +
|
|
||||||
", depositAmount=" + depositAmount +
|
|
||||||
", preSaleType=" + preSaleType +
|
|
||||||
", balanceEndTime=" + balanceEndTime +
|
|
||||||
", freightAmount=" + freightAmount +
|
|
||||||
", platformFreeFreightAmount=" + platformFreeFreightAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.common.order.bo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.order.vo.OrderSimpleAmountInfoBO;
|
import com.tmerclub.cloud.common.order.vo.OrderSimpleAmountInfoBO;
|
||||||
import com.tmerclub.cloud.common.order.vo.ShopCartOrderMergerVO;
|
import com.tmerclub.cloud.common.order.vo.ShopCartOrderMergerVO;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.List;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/12/8
|
* @date 2020/12/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class PayNotifyBO implements Serializable {
|
public class PayNotifyBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -61,29 +65,6 @@ public class PayNotifyBO implements Serializable {
|
|||||||
private List<OrderSimpleAmountInfoBO> orderSimpleAmountInfos;
|
private List<OrderSimpleAmountInfoBO> orderSimpleAmountInfos;
|
||||||
private ShopCartOrderMergerVO shopCartOrderMergerVO;
|
private ShopCartOrderMergerVO shopCartOrderMergerVO;
|
||||||
|
|
||||||
public ShopCartOrderMergerVO getShopCartOrderMergerVO() {
|
|
||||||
return shopCartOrderMergerVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopCartOrderMergerVO(ShopCartOrderMergerVO shopCartOrderMergerVO) {
|
|
||||||
this.shopCartOrderMergerVO = shopCartOrderMergerVO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPaySysType() {
|
|
||||||
return paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaySysType(Integer paySysType) {
|
|
||||||
this.paySysType = paySysType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAgreePurchase() {
|
|
||||||
return agreePurchase;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAgreePurchase(Integer agreePurchase) {
|
|
||||||
this.agreePurchase = agreePurchase;
|
|
||||||
}
|
|
||||||
public PayNotifyBO() {
|
public PayNotifyBO() {
|
||||||
}
|
}
|
||||||
public PayNotifyBO(List<Long> orderIds, Integer payType, Long payId, Integer paySysType, ShopCartOrderMergerVO shopCartOrderMergerVO) {
|
public PayNotifyBO(List<Long> orderIds, Integer payType, Long payId, Integer paySysType, ShopCartOrderMergerVO shopCartOrderMergerVO) {
|
||||||
@ -94,101 +75,4 @@ public class PayNotifyBO implements Serializable {
|
|||||||
this.shopCartOrderMergerVO = shopCartOrderMergerVO;
|
this.shopCartOrderMergerVO = shopCartOrderMergerVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Long> getOrderIds() {
|
|
||||||
return orderIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderIds(List<Long> orderIds) {
|
|
||||||
this.orderIds = orderIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayType() {
|
|
||||||
return payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayType(Integer payType) {
|
|
||||||
this.payType = payType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayId() {
|
|
||||||
return payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayId(Long payId) {
|
|
||||||
this.payId = payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getShopWalletIds() {
|
|
||||||
return shopWalletIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopWalletIds(List<Long> shopWalletIds) {
|
|
||||||
this.shopWalletIds = shopWalletIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderType() {
|
|
||||||
return orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderType(Integer orderType) {
|
|
||||||
this.orderType = orderType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getPurchaseOrder() {
|
|
||||||
return isPurchaseOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseOrder(Boolean purchaseOrder) {
|
|
||||||
isPurchaseOrder = purchaseOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPreSaleType() {
|
|
||||||
return preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPreSaleType(Integer preSaleType) {
|
|
||||||
this.preSaleType = preSaleType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderStatus() {
|
|
||||||
return orderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderStatus(Integer orderStatus) {
|
|
||||||
this.orderStatus = orderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<OrderStatusBO> getOrderStatusList() {
|
|
||||||
return orderStatusList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderStatusList(List<OrderStatusBO> orderStatusList) {
|
|
||||||
this.orderStatusList = orderStatusList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<OrderSimpleAmountInfoBO> getOrderSimpleAmountInfos() {
|
|
||||||
return orderSimpleAmountInfos;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderSimpleAmountInfos(List<OrderSimpleAmountInfoBO> orderSimpleAmountInfos) {
|
|
||||||
this.orderSimpleAmountInfos = orderSimpleAmountInfos;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PayNotifyBO{" +
|
|
||||||
"orderIds=" + orderIds +
|
|
||||||
", payType=" + payType +
|
|
||||||
", payId=" + payId +
|
|
||||||
", agreePurchase=" + agreePurchase +
|
|
||||||
", shopWalletIds=" + shopWalletIds +
|
|
||||||
", orderType=" + orderType +
|
|
||||||
", preSaleType=" + preSaleType +
|
|
||||||
", orderStatus=" + orderStatus +
|
|
||||||
", isPurchaseOrder=" + isPurchaseOrder +
|
|
||||||
", paySysType=" + paySysType +
|
|
||||||
", orderStatusList=" + orderStatusList +
|
|
||||||
", orderSimpleAmountInfos=" + orderSimpleAmountInfos +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
@ -8,6 +11,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/12/8
|
* @date 2020/12/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class PayRefundBO implements Serializable {
|
public class PayRefundBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -54,91 +59,5 @@ public class PayRefundBO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getAllinpayRefundPurchaseAmount() {
|
|
||||||
return allinpayRefundPurchaseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAllinpayRefundPurchaseAmount(Long allinpayRefundPurchaseAmount) {
|
|
||||||
this.allinpayRefundPurchaseAmount = allinpayRefundPurchaseAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPayIds() {
|
|
||||||
|
|
||||||
return payIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayIds(String payIds) {
|
|
||||||
this.payIds = payIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayId() {
|
|
||||||
return payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayId(Long payId) {
|
|
||||||
this.payId = payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundAmount() {
|
|
||||||
return refundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundAmount(Long refundAmount) {
|
|
||||||
this.refundAmount = refundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOnlyRefund() {
|
|
||||||
return onlyRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOnlyRefund(Integer onlyRefund) {
|
|
||||||
this.onlyRefund = onlyRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUnSuccessGroupOrder() {
|
|
||||||
return unSuccessGroupOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnSuccessGroupOrder(Integer unSuccessGroupOrder) {
|
|
||||||
this.unSuccessGroupOrder = unSuccessGroupOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PayRefundBO{" +
|
|
||||||
"refundId=" + refundId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", payId=" + payId +
|
|
||||||
", payIds='" + payIds + '\'' +
|
|
||||||
", refundAmount=" + refundAmount +
|
|
||||||
", allinpayRefundPurchaseAmount=" + allinpayRefundPurchaseAmount +
|
|
||||||
", onlyRefund=" + onlyRefund +
|
|
||||||
", unSuccessGroupOrder=" + unSuccessGroupOrder +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-08-28
|
* @date 2023-08-28
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class PurchaseAmountLogBO {
|
public class PurchaseAmountLogBO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -45,72 +50,5 @@ public class PurchaseAmountLogBO {
|
|||||||
public PurchaseAmountLogBO() {
|
public PurchaseAmountLogBO() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getPurchaseOrderId() {
|
|
||||||
return purchaseOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseOrderId(Long purchaseOrderId) {
|
|
||||||
this.purchaseOrderId = purchaseOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getChangeAmount() {
|
|
||||||
return changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setChangeAmount(Long changeAmount) {
|
|
||||||
this.changeAmount = changeAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPurchaseAmountType() {
|
|
||||||
return purchaseAmountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseAmountType(Integer purchaseAmountType) {
|
|
||||||
this.purchaseAmountType = purchaseAmountType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPurchaseTotalAmount() {
|
|
||||||
return purchaseTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPurchaseTotalAmount(Long purchaseTotalAmount) {
|
|
||||||
this.purchaseTotalAmount = purchaseTotalAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdCount() {
|
|
||||||
return prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdCount(Integer prodCount) {
|
|
||||||
this.prodCount = prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "PurchaseLogBO{" +
|
|
||||||
"purchaseOrderId=" + purchaseOrderId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", changeAmount=" + changeAmount +
|
|
||||||
", purchaseAmountType=" + purchaseAmountType +
|
|
||||||
", purchaseTotalAmount=" + purchaseTotalAmount +
|
|
||||||
", prodCount=" + prodCount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author lhd
|
* @author lhd
|
||||||
* @date 2023/8/5
|
* @date 2023/8/5
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class RedisSeckillOrderBO implements Serializable {
|
public class RedisSeckillOrderBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -28,27 +32,4 @@ public class RedisSeckillOrderBO implements Serializable {
|
|||||||
this.orderId = orderId;
|
this.orderId = orderId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "RedisSeckillOrderBO{" +
|
|
||||||
"userId=" + userId +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.common.order.bo;
|
package com.tmerclub.cloud.common.order.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
@ -8,6 +11,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/12/8
|
* @date 2020/12/8
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class RefundNotifyBO implements Serializable {
|
public class RefundNotifyBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -50,99 +55,5 @@ public class RefundNotifyBO implements Serializable {
|
|||||||
private Long orderScore;
|
private Long orderScore;
|
||||||
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayId() {
|
|
||||||
return payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayId(Long payId) {
|
|
||||||
this.payId = payId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundId() {
|
|
||||||
return refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundId(Long refundId) {
|
|
||||||
this.refundId = refundId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRefundAmount() {
|
|
||||||
return refundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundAmount(Long refundAmount) {
|
|
||||||
this.refundAmount = refundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUnSuccessGroupOrder() {
|
|
||||||
return unSuccessGroupOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUnSuccessGroupOrder(Integer unSuccessGroupOrder) {
|
|
||||||
this.unSuccessGroupOrder = unSuccessGroupOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getCanRefund() {
|
|
||||||
return canRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCanRefund(Boolean canRefund) {
|
|
||||||
this.canRefund = canRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderStatus() {
|
|
||||||
return orderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderStatus(Integer orderStatus) {
|
|
||||||
this.orderStatus = orderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDbOrderStatus() {
|
|
||||||
return dbOrderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDbOrderStatus(Integer dbOrderStatus) {
|
|
||||||
this.dbOrderStatus = dbOrderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderScore() {
|
|
||||||
return orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderScore(Long orderScore) {
|
|
||||||
this.orderScore = orderScore;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "RefundNotifyBO{" +
|
|
||||||
"orderId=" + orderId +
|
|
||||||
", payId=" + payId +
|
|
||||||
", refundId=" + refundId +
|
|
||||||
", refundAmount=" + refundAmount +
|
|
||||||
", unSuccessGroupOrder=" + unSuccessGroupOrder +
|
|
||||||
", canRefund=" + canRefund +
|
|
||||||
", orderStatus=" + orderStatus +
|
|
||||||
", dbOrderStatus=" + dbOrderStatus +
|
|
||||||
", userId=" + userId +
|
|
||||||
", orderScore=" + orderScore +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @date 2020-07-13 13:18:33
|
* @date 2020-07-13 13:18:33
|
||||||
*/
|
*/
|
||||||
@Document("flow_user_log")
|
@Document("flow_user_log")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowLogBO implements Serializable{
|
public class FlowLogBO implements Serializable{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -70,108 +74,5 @@ public class FlowLogBO implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Date dt;
|
private Date dt;
|
||||||
|
|
||||||
public Long getOid() {
|
|
||||||
return oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOid(Long oid) {
|
|
||||||
this.oid = oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSt() {
|
|
||||||
return st;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSt(Integer st) {
|
|
||||||
this.st = st;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPid() {
|
|
||||||
return pid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPid(Integer pid) {
|
|
||||||
this.pid = pid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVe() {
|
|
||||||
return ve;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVe(Integer ve) {
|
|
||||||
this.ve = ve;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSid() {
|
|
||||||
return sid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSid(Integer sid) {
|
|
||||||
this.sid = sid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBid() {
|
|
||||||
return bid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBid(Long bid) {
|
|
||||||
this.bid = bid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getS() {
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setS(Integer s) {
|
|
||||||
this.s = s;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getN() {
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setN(Integer n) {
|
|
||||||
this.n = n;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUid() {
|
|
||||||
return uid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUid(Long uid) {
|
|
||||||
this.uid = uid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getIp() {
|
|
||||||
return ip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIp(Long ip) {
|
|
||||||
this.ip = ip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getDt() {
|
|
||||||
return dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDt(Date dt) {
|
|
||||||
this.dt = dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowLogBO{" +
|
|
||||||
"oid=" + oid +
|
|
||||||
", st=" + st +
|
|
||||||
", pid=" + pid +
|
|
||||||
", ve=" + ve +
|
|
||||||
", sid=" + sid +
|
|
||||||
", bid='" + bid + '\'' +
|
|
||||||
", s=" + s +
|
|
||||||
", n=" + n +
|
|
||||||
", uid='" + uid + '\'' +
|
|
||||||
", ip=" + ip +
|
|
||||||
", dt=" + dt +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "data_type_province_idx", def = "{'dateType':1, 'provinceId':1}")
|
@CompoundIndex(name = "data_type_province_idx", def = "{'dateType':1, 'provinceId':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_regional")
|
@Document("flow_regional")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowRegionalBO extends BaseModel implements Serializable {
|
public class FlowRegionalBO extends BaseModel implements Serializable {
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 9;
|
public static final Integer ID_LENGTH = 9;
|
||||||
@ -91,126 +95,5 @@ public class FlowRegionalBO extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long payAmount;
|
private Long payAmount;
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Integer provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNum() {
|
|
||||||
return visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNum(Integer visitNum) {
|
|
||||||
this.visitNum = visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitUserNum() {
|
|
||||||
return visitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUserNum(Integer visitUserNum) {
|
|
||||||
this.visitUserNum = visitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSpuVisitNum() {
|
|
||||||
return spuVisitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuVisitNum(Integer spuVisitNum) {
|
|
||||||
this.spuVisitNum = spuVisitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSpuVisitUserNum() {
|
|
||||||
return spuVisitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuVisitUserNum(Integer spuVisitUserNum) {
|
|
||||||
this.spuVisitUserNum = spuVisitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartUserNum() {
|
|
||||||
return plusShopCartUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartUserNum(Integer plusShopCartUserNum) {
|
|
||||||
this.plusShopCartUserNum = plusShopCartUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlusShopCartNum() {
|
|
||||||
return plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartNum(Long plusShopCartNum) {
|
|
||||||
this.plusShopCartNum = plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderUserNum() {
|
|
||||||
return placeOrderUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUserNum(Integer placeOrderUserNum) {
|
|
||||||
this.placeOrderUserNum = placeOrderUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUserNum() {
|
|
||||||
return payUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUserNum(Integer payUserNum) {
|
|
||||||
this.payUserNum = payUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowRegionalBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", visitNum=" + visitNum +
|
|
||||||
", visitUserNum=" + visitUserNum +
|
|
||||||
", spuVisitNum=" + spuVisitNum +
|
|
||||||
", spuVisitUserNum=" + spuVisitUserNum +
|
|
||||||
", plusShopCartUserNum=" + plusShopCartUserNum +
|
|
||||||
", plusShopCartNum=" + plusShopCartNum +
|
|
||||||
", placeOrderUserNum=" + placeOrderUserNum +
|
|
||||||
", payUserNum=" + payUserNum +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "data_type_shop_idx", def = "{'dateType':1, 'shopId':1}")
|
@CompoundIndex(name = "data_type_shop_idx", def = "{'dateType':1, 'shopId':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_spu")
|
@Document("flow_spu")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowSpuBO extends BaseModel implements Serializable{
|
public class FlowSpuBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 19;
|
public static final Integer ID_LENGTH = 19;
|
||||||
@ -145,216 +149,5 @@ public class FlowSpuBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Double refundRate;
|
private Double refundRate;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisit() {
|
|
||||||
return visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisit(Long visit) {
|
|
||||||
this.visit = visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitUser() {
|
|
||||||
return visitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUser(Integer visitUser) {
|
|
||||||
this.visitUser = visitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartUser() {
|
|
||||||
return plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartUser(Integer plusShopCartUser) {
|
|
||||||
this.plusShopCartUser = plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderUser() {
|
|
||||||
return placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUser(Integer placeOrderUser) {
|
|
||||||
this.placeOrderUser = placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUser() {
|
|
||||||
return payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUser(Integer payUser) {
|
|
||||||
this.payUser = payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderNum() {
|
|
||||||
return placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderNum(Integer placeOrderNum) {
|
|
||||||
this.placeOrderNum = placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayNum() {
|
|
||||||
return payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayNum(Integer payNum) {
|
|
||||||
this.payNum = payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getApplyRefundOrder() {
|
|
||||||
return applyRefundOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setApplyRefundOrder(Integer applyRefundOrder) {
|
|
||||||
this.applyRefundOrder = applyRefundOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getApplyRefundUser() {
|
|
||||||
return applyRefundUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setApplyRefundUser(Integer applyRefundUser) {
|
|
||||||
this.applyRefundUser = applyRefundUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSuccessRefundOrder() {
|
|
||||||
return successRefundOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSuccessRefundOrder(Integer successRefundOrder) {
|
|
||||||
this.successRefundOrder = successRefundOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSuccessRefundUser() {
|
|
||||||
return successRefundUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSuccessRefundUser(Integer successRefundUser) {
|
|
||||||
this.successRefundUser = successRefundUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getApplyRefundAmount() {
|
|
||||||
return applyRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setApplyRefundAmount(Long applyRefundAmount) {
|
|
||||||
this.applyRefundAmount = applyRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSuccessRefundAmount() {
|
|
||||||
return successRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSuccessRefundAmount(Long successRefundAmount) {
|
|
||||||
this.successRefundAmount = successRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getRefundRate() {
|
|
||||||
return refundRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundRate(Double refundRate) {
|
|
||||||
this.refundRate = refundRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierSpuId() {
|
|
||||||
return supplierSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuId(Long supplierSpuId) {
|
|
||||||
this.supplierSpuId = supplierSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowSpuBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", supplierSpuId=" + supplierSpuId +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", visit=" + visit +
|
|
||||||
", visitUser=" + visitUser +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", plusShopCartUser=" + plusShopCartUser +
|
|
||||||
", placeOrderUser=" + placeOrderUser +
|
|
||||||
", payUser=" + payUser +
|
|
||||||
", placeOrderNum=" + placeOrderNum +
|
|
||||||
", payNum=" + payNum +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", applyRefundOrder=" + applyRefundOrder +
|
|
||||||
", applyRefundUser=" + applyRefundUser +
|
|
||||||
", applyRefundAmount=" + applyRefundAmount +
|
|
||||||
", successRefundOrder=" + successRefundOrder +
|
|
||||||
", successRefundUser=" + successRefundUser +
|
|
||||||
", successRefundAmount=" + successRefundAmount +
|
|
||||||
", refundRate=" + refundRate +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "spu_user_idx", def = "{'spuId':1, 'userId':1}")
|
@CompoundIndex(name = "spu_user_idx", def = "{'spuId':1, 'userId':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_spu_user")
|
@Document("flow_spu_user")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowSpuUserBO extends BaseModel implements Serializable{
|
public class FlowSpuUserBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
|
|
||||||
@ -89,126 +93,5 @@ public class FlowSpuUserBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Long oid;
|
private Long oid;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisit() {
|
|
||||||
return visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisit(Integer visit) {
|
|
||||||
this.visit = visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartNum() {
|
|
||||||
return plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartNum(Integer plusShopCartNum) {
|
|
||||||
this.plusShopCartNum = plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNum() {
|
|
||||||
return visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNum(Integer visitNum) {
|
|
||||||
this.visitNum = visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierSpuId() {
|
|
||||||
return supplierSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuId(Long supplierSpuId) {
|
|
||||||
this.supplierSpuId = supplierSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSupplierId() {
|
|
||||||
return supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierId(Long supplierId) {
|
|
||||||
this.supplierId = supplierId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOid() {
|
|
||||||
return oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOid(Long oid) {
|
|
||||||
this.oid = oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewVisit() {
|
|
||||||
return newVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewVisit(Integer newVisit) {
|
|
||||||
this.newVisit = newVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowSpuUserBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", userId=" + userId +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", supplierSpuId=" + supplierSpuId +
|
|
||||||
", supplierId=" + supplierId +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", visit=" + visit +
|
|
||||||
", visitNum=" + visitNum +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", plusShopCartNum=" + plusShopCartNum +
|
|
||||||
", newVisit=" + newVisit +
|
|
||||||
", oid=" + oid +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -21,6 +23,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "spu_user_idx", def = "{'spuId':1, 'userId':1}")
|
@CompoundIndex(name = "spu_user_idx", def = "{'spuId':1, 'userId':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_system")
|
@Document("flow_system")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowSystemBO extends BaseModel implements Serializable{
|
public class FlowSystemBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 8;
|
public static final Integer ID_LENGTH = 8;
|
||||||
@ -87,117 +91,5 @@ public class FlowSystemBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Integer payAmount;
|
private Integer payAmount;
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisit() {
|
|
||||||
return visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisit(Integer visit) {
|
|
||||||
this.visit = visit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartUser() {
|
|
||||||
return plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartUser(Integer plusShopCartUser) {
|
|
||||||
this.plusShopCartUser = plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitUser() {
|
|
||||||
return visitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUser(Integer visitUser) {
|
|
||||||
this.visitUser = visitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewVisitUser() {
|
|
||||||
return newVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewVisitUser(Integer newVisitUser) {
|
|
||||||
this.newVisitUser = newVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getLossUser() {
|
|
||||||
return lossUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLossUser(Integer lossUser) {
|
|
||||||
this.lossUser = lossUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderUser() {
|
|
||||||
return placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUser(Integer placeOrderUser) {
|
|
||||||
this.placeOrderUser = placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUser() {
|
|
||||||
return payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUser(Integer payUser) {
|
|
||||||
this.payUser = payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Integer placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Integer payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowSystemBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", visit=" + visit +
|
|
||||||
", plusShopCartUser=" + plusShopCartUser +
|
|
||||||
", visitUser=" + visitUser +
|
|
||||||
", newVisitUser=" + newVisitUser +
|
|
||||||
", lossUser=" + lossUser +
|
|
||||||
", placeOrderUser=" + placeOrderUser +
|
|
||||||
", payUser=" + payUser +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -21,6 +23,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "date_type_system_type_idx", def = "{'dateType':1, 'systemType':1}")
|
@CompoundIndex(name = "date_type_system_type_idx", def = "{'dateType':1, 'systemType':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_system_user")
|
@Document("flow_system_user")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowSystemUserBO extends BaseModel implements Serializable{
|
public class FlowSystemUserBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 18;
|
public static final Integer ID_LENGTH = 18;
|
||||||
@ -74,90 +78,5 @@ public class FlowSystemUserBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Integer pay;
|
private Integer pay;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewVisitUser() {
|
|
||||||
return newVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewVisitUser(Integer newVisitUser) {
|
|
||||||
this.newVisitUser = newVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getLoss() {
|
|
||||||
return loss;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoss(Integer loss) {
|
|
||||||
this.loss = loss;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrder() {
|
|
||||||
return placeOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrder(Integer placeOrder) {
|
|
||||||
this.placeOrder = placeOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPay() {
|
|
||||||
return pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPay(Integer pay) {
|
|
||||||
this.pay = pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SystemUserAnalyseBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", userId=" + userId +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", newVisitUser=" + newVisitUser +
|
|
||||||
", loss=" + loss +
|
|
||||||
", placeOrder=" + placeOrder +
|
|
||||||
", pay=" + pay +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "date_type_type_idx", def = "{'dateType':1, 'type':1}")
|
@CompoundIndex(name = "date_type_type_idx", def = "{'dateType':1, 'type':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_user")
|
@Document("flow_user")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowUserBO extends BaseModel implements Serializable {
|
public class FlowUserBO extends BaseModel implements Serializable {
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 16;
|
public static final Integer ID_LENGTH = 16;
|
||||||
@ -80,90 +84,5 @@ public class FlowUserBO extends BaseModel implements Serializable {
|
|||||||
this.payAmount = 0L;
|
this.payAmount = 0L;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(Integer type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserNum() {
|
|
||||||
return userNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNum(Integer userNum) {
|
|
||||||
this.userNum = userNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReceiveCouponUser() {
|
|
||||||
return receiveCouponUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReceiveCouponUser(Integer receiveCouponUser) {
|
|
||||||
this.receiveCouponUser = receiveCouponUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewUserNum() {
|
|
||||||
return newUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewUserNum(Integer newUserNum) {
|
|
||||||
this.newUserNum = newUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUser() {
|
|
||||||
return payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUser(Integer payUser) {
|
|
||||||
this.payUser = payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayOrder() {
|
|
||||||
return payOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayOrder(Integer payOrder) {
|
|
||||||
this.payOrder = payOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserStatisticsBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", type=" + type +
|
|
||||||
", userNum=" + userNum +
|
|
||||||
", receiveCouponUser=" + receiveCouponUser +
|
|
||||||
", newUserNum=" + newUserNum +
|
|
||||||
", payUser=" + payUser +
|
|
||||||
", payOrder=" + payOrder +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "date_type_idx", def = "{'dateType':1}")
|
@CompoundIndex(name = "date_type_idx", def = "{'dateType':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_user_footprint")
|
@Document("flow_user_footprint")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowUserFootprintBO extends BaseModel implements Serializable{
|
public class FlowUserFootprintBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 9;
|
public static final Integer ID_LENGTH = 9;
|
||||||
@ -44,45 +48,5 @@ public class FlowUserFootprintBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Integer visitId;
|
private Integer visitId;
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserNums() {
|
|
||||||
return userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNums(Integer userNums) {
|
|
||||||
this.userNums = userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitId() {
|
|
||||||
return visitId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitId(Integer visitId) {
|
|
||||||
this.visitId = visitId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserFootprintStatisticsBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", dateType=" + dateType +
|
|
||||||
", userNums=" + userNums +
|
|
||||||
", visitId=" + visitId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -20,6 +22,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "user_idx", def = "{'userId':1}")
|
@CompoundIndex(name = "user_idx", def = "{'userId':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_user_operation")
|
@Document("flow_user_operation")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowUserOperationBO extends BaseModel implements Serializable{
|
public class FlowUserOperationBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
|
|
||||||
@ -111,162 +115,5 @@ public class FlowUserOperationBO extends BaseModel implements Serializable{
|
|||||||
*/
|
*/
|
||||||
private Integer payAmount;
|
private Integer payAmount;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStep() {
|
|
||||||
return step;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStep(Integer step) {
|
|
||||||
this.step = step;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNum() {
|
|
||||||
return visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNum(Integer visitNum) {
|
|
||||||
this.visitNum = visitNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartNum() {
|
|
||||||
return plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartNum(Integer plusShopCartNum) {
|
|
||||||
this.plusShopCartNum = plusShopCartNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewUser() {
|
|
||||||
return newUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewUser(Integer newUser) {
|
|
||||||
this.newUser = newUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewVipUser() {
|
|
||||||
return newVipUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewVipUser(Integer newVipUser) {
|
|
||||||
this.newVipUser = newVipUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVipUser() {
|
|
||||||
return vipUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVipUser(Integer vipUser) {
|
|
||||||
this.vipUser = vipUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getMembership() {
|
|
||||||
return membership;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMembership(Integer membership) {
|
|
||||||
this.membership = membership;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getReceiveCoupon() {
|
|
||||||
return receiveCoupon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReceiveCoupon(Integer receiveCoupon) {
|
|
||||||
this.receiveCoupon = receiveCoupon;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrder() {
|
|
||||||
return placeOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrder(Integer placeOrder) {
|
|
||||||
this.placeOrder = placeOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPay() {
|
|
||||||
return pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPay(Integer pay) {
|
|
||||||
this.pay = pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderNum() {
|
|
||||||
return placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderNum(Integer placeOrderNum) {
|
|
||||||
this.placeOrderNum = placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayNum() {
|
|
||||||
return payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayNum(Integer payNum) {
|
|
||||||
this.payNum = payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Integer placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Integer payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserAnalyseLogBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", userId=" + userId +
|
|
||||||
", step=" + step +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", visitNum=" + visitNum +
|
|
||||||
", plusShopCartNum=" + plusShopCartNum +
|
|
||||||
", newUser=" + newUser +
|
|
||||||
", newVipUser=" + newVipUser +
|
|
||||||
", vipUser=" + vipUser +
|
|
||||||
", membership=" + membership +
|
|
||||||
", receiveCoupon=" + receiveCoupon +
|
|
||||||
", placeOrder=" + placeOrder +
|
|
||||||
", pay=" + pay +
|
|
||||||
", placeOrderNum=" + placeOrderNum +
|
|
||||||
", payNum=" + payNum +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.bo;
|
package com.tmerclub.cloud.flow.bo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -19,6 +21,8 @@ import java.io.Serializable;
|
|||||||
@CompoundIndex(name = "retain_type_idx", def = "{'retainType':1}")
|
@CompoundIndex(name = "retain_type_idx", def = "{'retainType':1}")
|
||||||
})
|
})
|
||||||
@Document("flow_user_retain")
|
@Document("flow_user_retain")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowUserRetainBO extends BaseModel implements Serializable{
|
public class FlowUserRetainBO extends BaseModel implements Serializable{
|
||||||
|
|
||||||
public static final Integer ID_LENGTH = 5;
|
public static final Integer ID_LENGTH = 5;
|
||||||
@ -83,90 +87,5 @@ public class FlowUserRetainBO extends BaseModel implements Serializable{
|
|||||||
this.sixthMonthRemain = 0;
|
this.sixthMonthRemain = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewCustomers() {
|
|
||||||
return newCustomers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewCustomers(Integer newCustomers) {
|
|
||||||
this.newCustomers = newCustomers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFirstMonthRemain() {
|
|
||||||
return firstMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstMonthRemain(Integer firstMonthRemain) {
|
|
||||||
this.firstMonthRemain = firstMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSecondMonthRemain() {
|
|
||||||
return secondMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSecondMonthRemain(Integer secondMonthRemain) {
|
|
||||||
this.secondMonthRemain = secondMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getThirdMonthRemain() {
|
|
||||||
return thirdMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setThirdMonthRemain(Integer thirdMonthRemain) {
|
|
||||||
this.thirdMonthRemain = thirdMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFourthMonthRemain() {
|
|
||||||
return fourthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFourthMonthRemain(Integer fourthMonthRemain) {
|
|
||||||
this.fourthMonthRemain = fourthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFifthMonthRemain() {
|
|
||||||
return fifthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFifthMonthRemain(Integer fifthMonthRemain) {
|
|
||||||
this.fifthMonthRemain = fifthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSixthMonthRemain() {
|
|
||||||
return sixthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSixthMonthRemain(Integer sixthMonthRemain) {
|
|
||||||
this.sixthMonthRemain = sixthMonthRemain;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRetainType() {
|
|
||||||
return retainType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRetainType(Integer retainType) {
|
|
||||||
this.retainType = retainType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowUserRetainBO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", retainType=" + retainType +
|
|
||||||
", newCustomers=" + newCustomers +
|
|
||||||
", firstMonthRemain=" + firstMonthRemain +
|
|
||||||
", secondMonthRemain=" + secondMonthRemain +
|
|
||||||
", thirdMonthRemain=" + thirdMonthRemain +
|
|
||||||
", fourthMonthRemain=" + fourthMonthRemain +
|
|
||||||
", fifthMonthRemain=" + fifthMonthRemain +
|
|
||||||
", sixthMonthRemain=" + sixthMonthRemain +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -16,6 +18,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-06-02
|
* @date 2021-06-02
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowAnalysisDTO implements Serializable {
|
public class FlowAnalysisDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -43,63 +47,5 @@ public class FlowAnalysisDTO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer systemType;
|
private Integer systemType;
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPageType() {
|
|
||||||
return pageType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPageType(Integer pageType) {
|
|
||||||
this.pageType = pageType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStart() {
|
|
||||||
return start;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStart(Long start) {
|
|
||||||
this.start = start;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowAnalysisDTO{" +
|
|
||||||
"dateType=" + dateType +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", start=" + start +
|
|
||||||
", pageType=" + pageType +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-07-13 13:18:33
|
* @date 2020-07-13 13:18:33
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowLogDTO implements Serializable {
|
public class FlowLogDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -73,108 +77,5 @@ public class FlowLogDTO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
public Long getOid() {
|
|
||||||
return oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOid(Long oid) {
|
|
||||||
this.oid = oid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSt() {
|
|
||||||
return st;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSt(Integer st) {
|
|
||||||
this.st = st;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPid() {
|
|
||||||
return pid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPid(Integer pid) {
|
|
||||||
this.pid = pid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVe() {
|
|
||||||
return ve;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVe(Integer ve) {
|
|
||||||
this.ve = ve;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSid() {
|
|
||||||
return sid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSid(Integer sid) {
|
|
||||||
this.sid = sid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBid() {
|
|
||||||
return bid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBid(String bid) {
|
|
||||||
this.bid = bid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getS() {
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setS(Integer s) {
|
|
||||||
this.s = s;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getN() {
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setN(Integer n) {
|
|
||||||
this.n = n;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIp() {
|
|
||||||
return ip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIp(String ip) {
|
|
||||||
this.ip = ip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowLogDTO{" +
|
|
||||||
"oid='" + oid + '\'' +
|
|
||||||
", st=" + st +
|
|
||||||
", pid=" + pid +
|
|
||||||
", ve=" + ve +
|
|
||||||
", sid=" + sid +
|
|
||||||
", bid='" + bid + '\'' +
|
|
||||||
", s=" + s +
|
|
||||||
", n=" + n +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", ip='" + ip + '\'' +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.util.Date;
|
|||||||
*
|
*
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FormDTO implements Serializable {
|
public class FormDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -53,126 +57,5 @@ public class FormDTO implements Serializable {
|
|||||||
@Schema(description = "推荐报表 true:推荐报表 false:店铺报表")
|
@Schema(description = "推荐报表 true:推荐报表 false:店铺报表")
|
||||||
private Boolean recommendForm;
|
private Boolean recommendForm;
|
||||||
|
|
||||||
public Long getFormId() {
|
|
||||||
return formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormId(Long formId) {
|
|
||||||
this.formId = formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormName() {
|
|
||||||
return formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormName(String formName) {
|
|
||||||
this.formName = formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFromType() {
|
|
||||||
return fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFromType(Integer fromType) {
|
|
||||||
this.fromType = fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeType() {
|
|
||||||
return timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeType(Integer timeType) {
|
|
||||||
this.timeType = timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeFormat() {
|
|
||||||
return timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeFormat(Integer timeFormat) {
|
|
||||||
this.timeFormat = timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormItemIds() {
|
|
||||||
return formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormItemIds(String formItemIds) {
|
|
||||||
this.formItemIds = formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeRange() {
|
|
||||||
return timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeRange(Integer timeRange) {
|
|
||||||
this.timeRange = timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getRecommendForm() {
|
|
||||||
return recommendForm;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRecommendForm(Boolean recommendForm) {
|
|
||||||
this.recommendForm = recommendForm;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FormDTO{" +
|
|
||||||
"formId=" + formId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", formName='" + formName + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", fromType=" + fromType +
|
|
||||||
", timeType=" + timeType +
|
|
||||||
", timeFormat=" + timeFormat +
|
|
||||||
", formItemIds='" + formItemIds + '\'' +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", timeRange=" + timeRange +
|
|
||||||
", seq=" + seq +
|
|
||||||
", recommendForm=" + recommendForm +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyseDTO implements Serializable {
|
public class ProductAnalyseDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,117 +55,5 @@ public class ProductAnalyseDTO implements Serializable {
|
|||||||
@Schema(description = "加购数量")
|
@Schema(description = "加购数量")
|
||||||
private Integer plusShopCart;
|
private Integer plusShopCart;
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPageId() {
|
|
||||||
return pageId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPageId(Long pageId) {
|
|
||||||
this.pageId = pageId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisis() {
|
|
||||||
return visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisis(Long visis) {
|
|
||||||
this.visis = visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getClick() {
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClick(Long click) {
|
|
||||||
this.click = click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareVisit() {
|
|
||||||
return shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareVisit(Long shareVisit) {
|
|
||||||
this.shareVisit = shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Double placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Double payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyseDTO{" +
|
|
||||||
"productAnalyseId=" + productAnalyseId +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",pageId=" + pageId +
|
|
||||||
",systemType=" + systemType +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",visis=" + visis +
|
|
||||||
",click=" + click +
|
|
||||||
",shareVisit=" + shareVisit +
|
|
||||||
",placeOrderAmount=" + placeOrderAmount +
|
|
||||||
",payAmount=" + payAmount +
|
|
||||||
",plusShopCart=" + plusShopCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyseUserDTO implements Serializable {
|
public class ProductAnalyseUserDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -48,108 +52,5 @@ public class ProductAnalyseUserDTO implements Serializable {
|
|||||||
@Schema(description = "加购")
|
@Schema(description = "加购")
|
||||||
private Integer isPlusShopCart;
|
private Integer isPlusShopCart;
|
||||||
|
|
||||||
public Long getProductAnalyseUserId() {
|
|
||||||
return productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseUserId(Long productAnalyseUserId) {
|
|
||||||
this.productAnalyseUserId = productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUuid() {
|
|
||||||
return uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUuid(String uuid) {
|
|
||||||
this.uuid = uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(String spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsVisit() {
|
|
||||||
return isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsVisit(Integer isVisit) {
|
|
||||||
this.isVisit = isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsClick() {
|
|
||||||
return isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsClick(Integer isClick) {
|
|
||||||
this.isClick = isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsShareVisit() {
|
|
||||||
return isShareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsShareVisit(Integer isShareVisit) {
|
|
||||||
this.isShareVisit = isShareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPlaceOrder() {
|
|
||||||
return isPlaceOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPlaceOrder(Integer isPlaceOrder) {
|
|
||||||
this.isPlaceOrder = isPlaceOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPay() {
|
|
||||||
return isPay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPay(Integer isPay) {
|
|
||||||
this.isPay = isPay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPlusShopCart() {
|
|
||||||
return isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPlusShopCart(Integer isPlusShopCart) {
|
|
||||||
this.isPlusShopCart = isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyseUserDTO{" +
|
|
||||||
"productAnalyseUserId=" + productAnalyseUserId +
|
|
||||||
",productAnalyseId=" + productAnalyseId +
|
|
||||||
",uuid=" + uuid +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",isVisit=" + isVisit +
|
|
||||||
",isClick=" + isClick +
|
|
||||||
",isShareVisit=" + isShareVisit +
|
|
||||||
",isPlaceOrder=" + isPlaceOrder +
|
|
||||||
",isPay=" + isPay +
|
|
||||||
",isPlusShopCart=" + isPlusShopCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@ package com.tmerclub.cloud.flow.dto;
|
|||||||
|
|
||||||
import io.swagger.v3.oas.annotations.Hidden;
|
import io.swagger.v3.oas.annotations.Hidden;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -11,6 +13,8 @@ import java.util.Date;
|
|||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-10-09
|
* @date 2023-10-09
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class SingleProdTrendDTO {
|
public class SingleProdTrendDTO {
|
||||||
|
|
||||||
@Schema(description = "商品id")
|
@Schema(description = "商品id")
|
||||||
@ -31,45 +35,5 @@ public class SingleProdTrendDTO {
|
|||||||
public SingleProdTrendDTO() {
|
public SingleProdTrendDTO() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SingleProdTrendDTO{" +
|
|
||||||
"spuId=" + spuId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserAnalysisDTO implements Serializable {
|
public class UserAnalysisDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -48,108 +52,5 @@ public class UserAnalysisDTO implements Serializable {
|
|||||||
@Schema(description = "系统类型 (1:pc 2:h5 3:小程序 4:安卓 5:ios)")
|
@Schema(description = "系统类型 (1:pc 2:h5 3:小程序 4:安卓 5:ios)")
|
||||||
private Integer systemType;
|
private Integer systemType;
|
||||||
|
|
||||||
public Long getUserAnalysisId() {
|
|
||||||
return userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAnalysisId(Long userAnalysisId) {
|
|
||||||
this.userAnalysisId = userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(String userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserType() {
|
|
||||||
return userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserType(Integer userType) {
|
|
||||||
this.userType = userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSessionNums() {
|
|
||||||
return sessionNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSessionNums(Integer sessionNums) {
|
|
||||||
this.sessionNums = sessionNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserAnalysisDTO{" +
|
|
||||||
"userAnalysisId=" + userAnalysisId +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",userId=" + userId +
|
|
||||||
",provinceId=" + provinceId +
|
|
||||||
",plusShopCart=" + plusShopCart +
|
|
||||||
",placeOrderAmount=" + placeOrderAmount +
|
|
||||||
",payAmount=" + payAmount +
|
|
||||||
",visitNums=" + visitNums +
|
|
||||||
",userType=" + userType +
|
|
||||||
",sessionNums=" + sessionNums +
|
|
||||||
",systemType=" + systemType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -12,6 +14,8 @@ import java.util.Date;
|
|||||||
* @author Pineapple
|
* @author Pineapple
|
||||||
* @date 2021/6/3 15:35
|
* @date 2021/6/3 15:35
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserVisitDTO implements Serializable {
|
public class UserVisitDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -34,36 +38,5 @@ public class UserVisitDTO implements Serializable {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date endTime;
|
private Date endTime;
|
||||||
|
|
||||||
public Integer getDateType() {
|
|
||||||
return dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateType(Integer dateType) {
|
|
||||||
this.dateType = dateType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserVisitDTO{" +
|
|
||||||
"dateType=" + dateType +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.dto;
|
package com.tmerclub.cloud.flow.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserVisitProdAnalysisDTO implements Serializable {
|
public class UserVisitProdAnalysisDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -28,45 +32,5 @@ public class UserVisitProdAnalysisDTO implements Serializable {
|
|||||||
@Schema(description = "商品id")
|
@Schema(description = "商品id")
|
||||||
private Long spuId;
|
private Long spuId;
|
||||||
|
|
||||||
public Long getUserVisitProdAnalysisId() {
|
|
||||||
return userVisitProdAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserVisitProdAnalysisId(Long userVisitProdAnalysisId) {
|
|
||||||
this.userVisitProdAnalysisId = userVisitProdAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserAnalysisId() {
|
|
||||||
return userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAnalysisId(Long userAnalysisId) {
|
|
||||||
this.userAnalysisId = userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserVisitProdAnalysisDTO{" +
|
|
||||||
"userVisitProdAnalysisId=" + userVisitProdAnalysisId +
|
|
||||||
", userAnalysisId=" + userAnalysisId +
|
|
||||||
", createDate=" + createDate +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -11,6 +14,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2020-07-13 13:18:33
|
* @date 2020-07-13 13:18:33
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowLog implements Serializable {
|
public class FlowLog implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.util.Date;
|
|||||||
*
|
*
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class Form extends BaseModel implements Serializable {
|
public class Form extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -75,119 +79,5 @@ public class Form extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer seq;
|
private Integer seq;
|
||||||
|
|
||||||
public Long getFormId() {
|
|
||||||
return formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormId(Long formId) {
|
|
||||||
this.formId = formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormName() {
|
|
||||||
return formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormName(String formName) {
|
|
||||||
this.formName = formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFromType() {
|
|
||||||
return fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFromType(Integer fromType) {
|
|
||||||
this.fromType = fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeType() {
|
|
||||||
return timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeType(Integer timeType) {
|
|
||||||
this.timeType = timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeFormat() {
|
|
||||||
return timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeFormat(Integer timeFormat) {
|
|
||||||
this.timeFormat = timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormItemIds() {
|
|
||||||
return formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormItemIds(String formItemIds) {
|
|
||||||
this.formItemIds = formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeRange() {
|
|
||||||
return timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeRange(Integer timeRange) {
|
|
||||||
this.timeRange = timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "Form{" +
|
|
||||||
"formId=" + formId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",formName=" + formName +
|
|
||||||
",content=" + content +
|
|
||||||
",fromType=" + fromType +
|
|
||||||
",timeType=" + timeType +
|
|
||||||
",timeFormat=" + timeFormat +
|
|
||||||
",formItemIds=" + formItemIds +
|
|
||||||
",startTime=" + startTime +
|
|
||||||
",endTime=" + endTime +
|
|
||||||
",timeRamge=" + timeRange +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",seq=" + seq +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyse extends BaseModel implements Serializable {
|
public class ProductAnalyse extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -67,100 +71,5 @@ public class ProductAnalyse extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private List<ProductAnalyseUser> productAnalyseUsers;
|
private List<ProductAnalyseUser> productAnalyseUsers;
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisis() {
|
|
||||||
return visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisis(Long visis) {
|
|
||||||
this.visis = visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getClick() {
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClick(Long click) {
|
|
||||||
this.click = click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareVisit() {
|
|
||||||
return shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareVisit(Long shareVisit) {
|
|
||||||
this.shareVisit = shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProductAnalyseUser> getProductAnalyseUsers() {
|
|
||||||
return productAnalyseUsers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseUsers(List<ProductAnalyseUser> productAnalyseUsers) {
|
|
||||||
this.productAnalyseUsers = productAnalyseUsers;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyse{" +
|
|
||||||
"productAnalyseId=" + productAnalyseId +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",systemType=" + systemType +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",visis=" + visis +
|
|
||||||
",click=" + click +
|
|
||||||
",shareVisit=" + shareVisit +
|
|
||||||
",plusShopCart=" + plusShopCart +
|
|
||||||
",productAnalyseUsers=" + productAnalyseUsers +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyseUser extends BaseModel implements Serializable {
|
public class ProductAnalyseUser extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,81 +60,5 @@ public class ProductAnalyseUser extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer isPlusShopCart;
|
private Integer isPlusShopCart;
|
||||||
|
|
||||||
public Long getProductAnalyseUserId() {
|
|
||||||
return productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseUserId(Long productAnalyseUserId) {
|
|
||||||
this.productAnalyseUserId = productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(String userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsVisit() {
|
|
||||||
return isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsVisit(Integer isVisit) {
|
|
||||||
this.isVisit = isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsClick() {
|
|
||||||
return isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsClick(Integer isClick) {
|
|
||||||
this.isClick = isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPlusShopCart() {
|
|
||||||
return isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPlusShopCart(Integer isPlusShopCart) {
|
|
||||||
this.isPlusShopCart = isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyseUser{" +
|
|
||||||
"productAnalyseUserId=" + productAnalyseUserId +
|
|
||||||
",productAnalyseId=" + productAnalyseId +
|
|
||||||
",userId=" + userId +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",isVisit=" + isVisit +
|
|
||||||
",isClick=" + isClick +
|
|
||||||
",isPlusShopCart=" + isPlusShopCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserAnalysis extends BaseModel implements Serializable {
|
public class UserAnalysis extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -84,126 +88,5 @@ public class UserAnalysis extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private List<UserVisitProdAnalysis> userVisitProdAnalyses;
|
private List<UserVisitProdAnalysis> userVisitProdAnalyses;
|
||||||
|
|
||||||
public Long getUserAnalysisId() {
|
|
||||||
return userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAnalysisId(Long userAnalysisId) {
|
|
||||||
this.userAnalysisId = userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(String userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getClickNums() {
|
|
||||||
return clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClickNums(Integer clickNums) {
|
|
||||||
this.clickNums = clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserType() {
|
|
||||||
return userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserType(Integer userType) {
|
|
||||||
this.userType = userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getSpuIds() {
|
|
||||||
return spuIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuIds(List<Long> spuIds) {
|
|
||||||
this.spuIds = spuIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<UserVisitProdAnalysis> getUserVisitProdAnalyses() {
|
|
||||||
return userVisitProdAnalyses;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserVisitProdAnalyses(List<UserVisitProdAnalysis> userVisitProdAnalyses) {
|
|
||||||
this.userVisitProdAnalyses = userVisitProdAnalyses;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserAnalysis{" +
|
|
||||||
"userAnalysisId=" + userAnalysisId +
|
|
||||||
", createDate=" + createDate +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", visitNums=" + visitNums +
|
|
||||||
", clickNums=" + clickNums +
|
|
||||||
", userType=" + userType +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", spuIds=" + spuIds +
|
|
||||||
", userVisitProdAnalyses=" + userVisitProdAnalyses +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.model;
|
package com.tmerclub.cloud.flow.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserVisitProdAnalysis extends BaseModel implements Serializable {
|
public class UserVisitProdAnalysis extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowAnalysisDataExcelVO implements Serializable {
|
public class FlowAnalysisDataExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,72 +50,5 @@ public class FlowAnalysisDataExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"流量分析信息", "ios"})
|
@ExcelProperty({"流量分析信息", "ios"})
|
||||||
private String ios;
|
private String ios;
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(String type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAll() {
|
|
||||||
return all;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAll(String all) {
|
|
||||||
this.all = all;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPc() {
|
|
||||||
return pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPc(String pc) {
|
|
||||||
this.pc = pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getH5() {
|
|
||||||
return h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setH5(String h5) {
|
|
||||||
this.h5 = h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getWx() {
|
|
||||||
return wx;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWx(String wx) {
|
|
||||||
this.wx = wx;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAndroid() {
|
|
||||||
return android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAndroid(String android) {
|
|
||||||
this.android = android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIos() {
|
|
||||||
return ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIos(String ios) {
|
|
||||||
this.ios = ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowAnalysisDataExcelVO{" +
|
|
||||||
"type='" + type + '\'' +
|
|
||||||
", all=" + all +
|
|
||||||
", pc=" + pc +
|
|
||||||
", h5=" + h5 +
|
|
||||||
", wx=" + wx +
|
|
||||||
", android=" + android +
|
|
||||||
", ios=" + ios +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-06-02
|
* @date 2021-06-02
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowAnalysisRatioVO implements Serializable {
|
public class FlowAnalysisRatioVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -45,99 +49,4 @@ public class FlowAnalysisRatioVO implements Serializable {
|
|||||||
@Schema(description = "支付用户比例")
|
@Schema(description = "支付用户比例")
|
||||||
private Double payUserRatio;
|
private Double payUserRatio;
|
||||||
|
|
||||||
public Double getUserNumsRatio() {
|
|
||||||
return userNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNumsRatio(Double userNumsRatio) {
|
|
||||||
this.userNumsRatio = userNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getNewUserNumsRatio() {
|
|
||||||
return newUserNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewUserNumsRatio(Double newUserNumsRatio) {
|
|
||||||
this.newUserNumsRatio = newUserNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLossUserRatio() {
|
|
||||||
return lossUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLossUserRatio(Double lossUserRatio) {
|
|
||||||
this.lossUserRatio = lossUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getVisitNumsRatio() {
|
|
||||||
return visitNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNumsRatio(Double visitNumsRatio) {
|
|
||||||
this.visitNumsRatio = visitNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getAverageVisitNumsRatio() {
|
|
||||||
return averageVisitNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAverageVisitNumsRatio(Double averageVisitNumsRatio) {
|
|
||||||
this.averageVisitNumsRatio = averageVisitNumsRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlusShopCartUserRatio() {
|
|
||||||
return plusShopCartUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartUserRatio(Double plusShopCartUserRatio) {
|
|
||||||
this.plusShopCartUserRatio = plusShopCartUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderRatio() {
|
|
||||||
return placeOrderRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderRatio(Double placeOrderRatio) {
|
|
||||||
this.placeOrderRatio = placeOrderRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderUserRatio() {
|
|
||||||
return placeOrderUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUserRatio(Double placeOrderUserRatio) {
|
|
||||||
this.placeOrderUserRatio = placeOrderUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayRatio() {
|
|
||||||
return payRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayRatio(Double payRatio) {
|
|
||||||
this.payRatio = payRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayUserRatio() {
|
|
||||||
return payUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUserRatio(Double payUserRatio) {
|
|
||||||
this.payUserRatio = payUserRatio;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowAnalysisRatioVO{" +
|
|
||||||
"userNumsRatio=" + userNumsRatio +
|
|
||||||
", newUserNumsRatio=" + newUserNumsRatio +
|
|
||||||
", lossUserRatio=" + lossUserRatio +
|
|
||||||
", visitNumsRatio=" + visitNumsRatio +
|
|
||||||
", averageVisitNumsRatio=" + averageVisitNumsRatio +
|
|
||||||
", plusShopCartUserRatio=" + plusShopCartUserRatio +
|
|
||||||
", placeOrderRatio=" + placeOrderRatio +
|
|
||||||
", placeOrderUserRatio=" + placeOrderUserRatio +
|
|
||||||
", payRatio=" + payRatio +
|
|
||||||
", payUserRatio=" + payUserRatio +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-06-02
|
* @date 2021-06-02
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowAnalysisVO implements Serializable {
|
public class FlowAnalysisVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -90,217 +94,4 @@ public class FlowAnalysisVO implements Serializable {
|
|||||||
private Date day;
|
private Date day;
|
||||||
|
|
||||||
|
|
||||||
public Boolean getNewData() {
|
|
||||||
return newData;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewData(Boolean newData) {
|
|
||||||
this.newData = newData;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDateTime() {
|
|
||||||
return dateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateTime(String dateTime) {
|
|
||||||
this.dateTime = dateTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Integer createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getDay() {
|
|
||||||
return day;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDay(Date day) {
|
|
||||||
this.day = day;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUvAmount() {
|
|
||||||
return uvAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUvAmount(Long uvAmount) {
|
|
||||||
this.uvAmount = uvAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getCustomerAmount() {
|
|
||||||
return customerAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCustomerAmount(Long customerAmount) {
|
|
||||||
this.customerAmount = customerAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getLossUser() {
|
|
||||||
return lossUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLossUser(Integer lossUser) {
|
|
||||||
this.lossUser = lossUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLossUserRate() {
|
|
||||||
return lossUserRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLossUserRate(Double lossUserRate) {
|
|
||||||
this.lossUserRate = lossUserRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCartUser() {
|
|
||||||
return plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCartUser(Integer plusShopCartUser) {
|
|
||||||
this.plusShopCartUser = plusShopCartUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderUser() {
|
|
||||||
return placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUser(Integer placeOrderUser) {
|
|
||||||
this.placeOrderUser = placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderRate() {
|
|
||||||
return placeOrderRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderRate(Double placeOrderRate) {
|
|
||||||
this.placeOrderRate = placeOrderRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUser() {
|
|
||||||
return payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUser(Integer payUser) {
|
|
||||||
this.payUser = payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayRate() {
|
|
||||||
return payRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayRate(Double payRate) {
|
|
||||||
this.payRate = payRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getAverageVisitNums() {
|
|
||||||
return averageVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAverageVisitNums(Double averageVisitNums) {
|
|
||||||
this.averageVisitNums = averageVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserNums() {
|
|
||||||
return userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNums(Integer userNums) {
|
|
||||||
this.userNums = userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewUserNums() {
|
|
||||||
return newUserNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewUserNums(Integer newUserNums) {
|
|
||||||
this.newUserNums = newUserNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOldUserNum() {
|
|
||||||
return oldUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOldUserNum(Integer oldUserNum) {
|
|
||||||
this.oldUserNum = oldUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public FlowAnalysisRatioVO getRatio() {
|
|
||||||
return ratio;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRatio(FlowAnalysisRatioVO ratio) {
|
|
||||||
this.ratio = ratio;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowAnalysisVO{" +
|
|
||||||
"newData=" + newData +
|
|
||||||
", dateTime='" + dateTime + '\'' +
|
|
||||||
", createDate=" + createDate +
|
|
||||||
", day=" + day +
|
|
||||||
", UVAmount=" + uvAmount +
|
|
||||||
", customerAmount=" + customerAmount +
|
|
||||||
", lossUser=" + lossUser +
|
|
||||||
", lossUserRate=" + lossUserRate +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", plusShopCartUser=" + plusShopCartUser +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", placeOrderUser=" + placeOrderUser +
|
|
||||||
", placeOrderRate=" + placeOrderRate +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", payUser=" + payUser +
|
|
||||||
", payRate=" + payRate +
|
|
||||||
", visitNums=" + visitNums +
|
|
||||||
", averageVisitNums=" + averageVisitNums +
|
|
||||||
", userNums=" + userNums +
|
|
||||||
", newUserNums=" + newUserNums +
|
|
||||||
", oldUserNum=" + oldUserNum +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", ratio=" + ratio +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowProdEffectDataExcelVO implements Serializable {
|
public class FlowProdEffectDataExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -82,180 +86,4 @@ public class FlowProdEffectDataExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"商品洞察", "退款率"})
|
@ExcelProperty({"商品洞察", "退款率"})
|
||||||
private Double refundSuccessRate;
|
private Double refundSuccessRate;
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuName() {
|
|
||||||
return spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuName(String spuName) {
|
|
||||||
this.spuName = spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExpose() {
|
|
||||||
return expose;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpose(Integer expose) {
|
|
||||||
this.expose = expose;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExposePersonNum() {
|
|
||||||
return exposePersonNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExposePersonNum(Integer exposePersonNum) {
|
|
||||||
this.exposePersonNum = exposePersonNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAddCartPerson() {
|
|
||||||
return addCartPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddCartPerson(Integer addCartPerson) {
|
|
||||||
this.addCartPerson = addCartPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAddCart() {
|
|
||||||
return addCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddCart(Integer addCart) {
|
|
||||||
this.addCart = addCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderPerson() {
|
|
||||||
return placeOrderPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderPerson(Integer placeOrderPerson) {
|
|
||||||
this.placeOrderPerson = placeOrderPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayPerson() {
|
|
||||||
return payPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPerson(Integer payPerson) {
|
|
||||||
this.payPerson = payPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderNum() {
|
|
||||||
return placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderNum(Integer placeOrderNum) {
|
|
||||||
this.placeOrderNum = placeOrderNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayNum() {
|
|
||||||
return payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayNum(Integer payNum) {
|
|
||||||
this.payNum = payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Double placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Double payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundNum() {
|
|
||||||
return refundNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundNum(Integer refundNum) {
|
|
||||||
this.refundNum = refundNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundPerson() {
|
|
||||||
return refundPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundPerson(Integer refundPerson) {
|
|
||||||
this.refundPerson = refundPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundSuccessNum() {
|
|
||||||
return refundSuccessNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundSuccessNum(Integer refundSuccessNum) {
|
|
||||||
this.refundSuccessNum = refundSuccessNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundSuccessPerson() {
|
|
||||||
return refundSuccessPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundSuccessPerson(Integer refundSuccessPerson) {
|
|
||||||
this.refundSuccessPerson = refundSuccessPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getRefundSuccessAmount() {
|
|
||||||
return refundSuccessAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundSuccessAmount(Double refundSuccessAmount) {
|
|
||||||
this.refundSuccessAmount = refundSuccessAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getRefundSuccessRate() {
|
|
||||||
return refundSuccessRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundSuccessRate(Double refundSuccessRate) {
|
|
||||||
this.refundSuccessRate = refundSuccessRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowProdEffectDataExcelVO{" +
|
|
||||||
"shopName='" + shopName + '\'' +
|
|
||||||
", spuName='" + spuName + '\'' +
|
|
||||||
", price=" + price +
|
|
||||||
", expose=" + expose +
|
|
||||||
", exposePersonNum=" + exposePersonNum +
|
|
||||||
", addCartPerson=" + addCartPerson +
|
|
||||||
", addCart=" + addCart +
|
|
||||||
", placeOrderPerson=" + placeOrderPerson +
|
|
||||||
", payPerson=" + payPerson +
|
|
||||||
", placeOrderNum=" + placeOrderNum +
|
|
||||||
", payNum=" + payNum +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", refundNum=" + refundNum +
|
|
||||||
", refundPerson=" + refundPerson +
|
|
||||||
", refundSuccessNum=" + refundSuccessNum +
|
|
||||||
", refundSuccessPerson=" + refundSuccessPerson +
|
|
||||||
", refundSuccessAmount=" + refundSuccessAmount +
|
|
||||||
", refundSuccessRate=" + refundSuccessRate +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author Pineapple
|
* @author Pineapple
|
||||||
* @date 2021/5/25 11:04
|
* @date 2021/5/25 11:04
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowProdEffectRespVO implements Serializable {
|
public class FlowProdEffectRespVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -39,54 +43,5 @@ public class FlowProdEffectRespVO implements Serializable {
|
|||||||
@Schema(description = "加购件数")
|
@Schema(description = "加购件数")
|
||||||
private Integer addCart;
|
private Integer addCart;
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExpose() {
|
|
||||||
return expose;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpose(Integer expose) {
|
|
||||||
this.expose = expose;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getExposePersonNum() {
|
|
||||||
return exposePersonNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExposePersonNum(Integer exposePersonNum) {
|
|
||||||
this.exposePersonNum = exposePersonNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAddCartPerson() {
|
|
||||||
return addCartPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddCartPerson(Integer addCartPerson) {
|
|
||||||
this.addCartPerson = addCartPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAddCart() {
|
|
||||||
return addCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAddCart(Integer addCart) {
|
|
||||||
this.addCart = addCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowProdEffectRespVO{" +
|
|
||||||
"spuId=" + spuId +
|
|
||||||
", expose=" + expose +
|
|
||||||
", exposePersonNum=" + exposePersonNum +
|
|
||||||
", addCartPerson=" + addCartPerson +
|
|
||||||
", addCart=" + addCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowSourDataExcelVO implements Serializable {
|
public class FlowSourDataExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -43,63 +47,4 @@ public class FlowSourDataExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"会员人数趋势信息", "ios"})
|
@ExcelProperty({"会员人数趋势信息", "ios"})
|
||||||
private String ios;
|
private String ios;
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setType(String type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPc() {
|
|
||||||
return pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPc(String pc) {
|
|
||||||
this.pc = pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getH5() {
|
|
||||||
return h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setH5(String h5) {
|
|
||||||
this.h5 = h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getWx() {
|
|
||||||
return wx;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setWx(String wx) {
|
|
||||||
this.wx = wx;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAndroid() {
|
|
||||||
return android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAndroid(String android) {
|
|
||||||
this.android = android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getIos() {
|
|
||||||
return ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIos(String ios) {
|
|
||||||
this.ios = ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowAnalysisDataExcelVO{" +
|
|
||||||
"type='" + type + '\'' +
|
|
||||||
", pc=" + pc +
|
|
||||||
", h5=" + h5 +
|
|
||||||
", wx=" + wx +
|
|
||||||
", android=" + android +
|
|
||||||
", ios=" + ios +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowTrendExcelVO implements Serializable {
|
public class FlowTrendExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -52,90 +56,5 @@ public class FlowTrendExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"流量趋势分析信息", "支付人数"})
|
@ExcelProperty({"流量趋势分析信息", "支付人数"})
|
||||||
private Integer payUser;
|
private Integer payUser;
|
||||||
|
|
||||||
public String getDate() {
|
|
||||||
return date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDate(String date) {
|
|
||||||
this.date = date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserNums() {
|
|
||||||
return userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNums(Integer userNums) {
|
|
||||||
this.userNums = userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewUserNums() {
|
|
||||||
return newUserNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewUserNums(Integer newUserNums) {
|
|
||||||
this.newUserNums = newUserNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getAverageVisitNums() {
|
|
||||||
return averageVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAverageVisitNums(Double averageVisitNums) {
|
|
||||||
this.averageVisitNums = averageVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getLossUserRate() {
|
|
||||||
return lossUserRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLossUserRate(Double lossUserRate) {
|
|
||||||
this.lossUserRate = lossUserRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlaceOrderUser() {
|
|
||||||
return placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderUser(Integer placeOrderUser) {
|
|
||||||
this.placeOrderUser = placeOrderUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayUser() {
|
|
||||||
return payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUser(Integer payUser) {
|
|
||||||
this.payUser = payUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowTrendExcelVO{" +
|
|
||||||
"date='" + date + '\'' +
|
|
||||||
", userNums=" + userNums +
|
|
||||||
", newUserNums=" + newUserNums +
|
|
||||||
", visitNums=" + visitNums +
|
|
||||||
", averageVisitNums=" + averageVisitNums +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", lossUserRate=" + lossUserRate +
|
|
||||||
", placeOrderUser=" + placeOrderUser +
|
|
||||||
", payUser=" + payUser +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +13,8 @@ import java.util.List;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/6/3 10:03
|
* @Date 2021/6/3 10:03
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FlowUserAnalysisVO implements Serializable {
|
public class FlowUserAnalysisVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -48,30 +52,6 @@ public class FlowUserAnalysisVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer userNums;
|
private Integer userNums;
|
||||||
|
|
||||||
public Integer getVisitId() {
|
|
||||||
return visitId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitId(Integer visitId) {
|
|
||||||
this.visitId = visitId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserNums() {
|
|
||||||
return userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNums(Integer userNums) {
|
|
||||||
this.userNums = userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "VisitNum{" +
|
|
||||||
"visitId=" + visitId +
|
|
||||||
", userNums=" + userNums +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
|
|
||||||
public VisitNum(Integer visitId, Integer userNums) {
|
public VisitNum(Integer visitId, Integer userNums) {
|
||||||
this.visitId = visitId;
|
this.visitId = visitId;
|
||||||
this.userNums = userNums;
|
this.userNums = userNums;
|
||||||
@ -80,73 +60,4 @@ public class FlowUserAnalysisVO implements Serializable {
|
|||||||
public VisitNum() {
|
public VisitNum() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<VisitNum> getVisitPageList() {
|
|
||||||
return visitPageList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitPageList(List<VisitNum> visitPageList) {
|
|
||||||
this.visitPageList = visitPageList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<UserAnalysisVO> getVisitUserList() {
|
|
||||||
return visitUserList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUserList(List<UserAnalysisVO> visitUserList) {
|
|
||||||
this.visitUserList = visitUserList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPc() {
|
|
||||||
return pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPc(Integer pc) {
|
|
||||||
this.pc = pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getH5() {
|
|
||||||
return h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setH5(Integer h5) {
|
|
||||||
this.h5 = h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getApplets() {
|
|
||||||
return applets;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setApplets(Integer applets) {
|
|
||||||
this.applets = applets;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAndroid() {
|
|
||||||
return android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAndroid(Integer android) {
|
|
||||||
this.android = android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIos() {
|
|
||||||
return ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIos(Integer ios) {
|
|
||||||
this.ios = ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FlowUserAnalysisVO{" +
|
|
||||||
"visitPageList=" + visitPageList +
|
|
||||||
", visitUserList=" + visitUserList +
|
|
||||||
", pc=" + pc +
|
|
||||||
", h5=" + h5 +
|
|
||||||
", applets=" + applets +
|
|
||||||
", android=" + android +
|
|
||||||
", ios=" + ios +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FormExcelVO implements Serializable {
|
public class FormExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -80,189 +84,5 @@ public class FormExcelVO implements Serializable {
|
|||||||
@ExcelProperty("退款率")
|
@ExcelProperty("退款率")
|
||||||
private String refundRate;
|
private String refundRate;
|
||||||
|
|
||||||
public String getDate() {
|
|
||||||
return date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDate(String date) {
|
|
||||||
this.date = date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCustomerUnitPrice() {
|
|
||||||
return customerUnitPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCustomerUnitPrice(String customerUnitPrice) {
|
|
||||||
this.customerUnitPrice = customerUnitPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTotalTransactionAmount() {
|
|
||||||
return totalTransactionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalTransactionAmount(String totalTransactionAmount) {
|
|
||||||
this.totalTransactionAmount = totalTransactionAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSelfCustomerUnitPrice() {
|
|
||||||
return selfCustomerUnitPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelfCustomerUnitPrice(String selfCustomerUnitPrice) {
|
|
||||||
this.selfCustomerUnitPrice = selfCustomerUnitPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSelfAmount() {
|
|
||||||
return selfAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelfAmount(String selfAmount) {
|
|
||||||
this.selfAmount = selfAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSelfOrders() {
|
|
||||||
return selfOrders;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelfOrders(Integer selfOrders) {
|
|
||||||
this.selfOrders = selfOrders;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSelfProducts() {
|
|
||||||
return selfProducts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelfProducts(Integer selfProducts) {
|
|
||||||
this.selfProducts = selfProducts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSelfNums() {
|
|
||||||
return selfNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelfNums(Integer selfNums) {
|
|
||||||
this.selfNums = selfNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrderAmount() {
|
|
||||||
return orderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderAmount(String orderAmount) {
|
|
||||||
this.orderAmount = orderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPeopleOrderNums() {
|
|
||||||
return peopleOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPeopleOrderNums(Integer peopleOrderNums) {
|
|
||||||
this.peopleOrderNums = peopleOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderNums() {
|
|
||||||
return orderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderNums(Integer orderNums) {
|
|
||||||
this.orderNums = orderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderProducts() {
|
|
||||||
return orderProducts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderProducts(Integer orderProducts) {
|
|
||||||
this.orderProducts = orderProducts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPaymentAmount() {
|
|
||||||
return paymentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPaymentAmount(String paymentAmount) {
|
|
||||||
this.paymentAmount = paymentAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayPeopleNums() {
|
|
||||||
return payPeopleNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPeopleNums(Integer payPeopleNums) {
|
|
||||||
this.payPeopleNums = payPeopleNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayOrderNums() {
|
|
||||||
return payOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayOrderNums(Integer payOrderNums) {
|
|
||||||
this.payOrderNums = payOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayProductNums() {
|
|
||||||
return payProductNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayProductNums(Integer payProductNums) {
|
|
||||||
this.payProductNums = payProductNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSuccessRefundAmount() {
|
|
||||||
return successRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSuccessRefundAmount(String successRefundAmount) {
|
|
||||||
this.successRefundAmount = successRefundAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getRefundOrderNums() {
|
|
||||||
return refundOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundOrderNums(Integer refundOrderNums) {
|
|
||||||
this.refundOrderNums = refundOrderNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrderPaymentRate() {
|
|
||||||
return orderPaymentRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderPaymentRate(String orderPaymentRate) {
|
|
||||||
this.orderPaymentRate = orderPaymentRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRefundRate() {
|
|
||||||
return refundRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRefundRate(String refundRate) {
|
|
||||||
this.refundRate = refundRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FormExcelVO{" +
|
|
||||||
"date='" + date + '\'' +
|
|
||||||
", customerUnitPrice='" + customerUnitPrice + '\'' +
|
|
||||||
", totalTransactionAmount='" + totalTransactionAmount + '\'' +
|
|
||||||
", selfCustomerUnitPrice='" + selfCustomerUnitPrice + '\'' +
|
|
||||||
", selfAmount='" + selfAmount + '\'' +
|
|
||||||
", selfOrders=" + selfOrders +
|
|
||||||
", selfProducts=" + selfProducts +
|
|
||||||
", selfNums=" + selfNums +
|
|
||||||
", orderAmount='" + orderAmount + '\'' +
|
|
||||||
", peopleOrderNums=" + peopleOrderNums +
|
|
||||||
", orderNums=" + orderNums +
|
|
||||||
", orderProducts=" + orderProducts +
|
|
||||||
", paymentAmount='" + paymentAmount + '\'' +
|
|
||||||
", payPeopleNums=" + payPeopleNums +
|
|
||||||
", payOrderNums=" + payOrderNums +
|
|
||||||
", payProductNums=" + payProductNums +
|
|
||||||
", successRefundAmount='" + successRefundAmount + '\'' +
|
|
||||||
", refundOrderNums=" + refundOrderNums +
|
|
||||||
", orderPaymentRate='" + orderPaymentRate + '\'' +
|
|
||||||
", refundRate='" + refundRate + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FormItemVO implements Serializable {
|
public class FormItemVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -20,36 +24,5 @@ public class FormItemVO implements Serializable {
|
|||||||
@Schema(description = "是否选择")
|
@Schema(description = "是否选择")
|
||||||
private Boolean select;
|
private Boolean select;
|
||||||
|
|
||||||
public Integer getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Integer id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValue(String value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Boolean getSelect() {
|
|
||||||
return select;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelect(Boolean select) {
|
|
||||||
this.select = select;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FormItemVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
", value='" + value + '\'' +
|
|
||||||
", select=" + select +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.List;
|
|||||||
*
|
*
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class FormVO extends BaseVO implements Serializable {
|
public class FormVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -55,126 +59,5 @@ public class FormVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "报表项列表")
|
@Schema(description = "报表项列表")
|
||||||
private List<FormItemVO> formItemList;
|
private List<FormItemVO> formItemList;
|
||||||
|
|
||||||
public Long getFormId() {
|
|
||||||
return formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormId(Long formId) {
|
|
||||||
this.formId = formId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormName() {
|
|
||||||
return formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormName(String formName) {
|
|
||||||
this.formName = formName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getFromType() {
|
|
||||||
return fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFromType(Integer fromType) {
|
|
||||||
this.fromType = fromType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeType() {
|
|
||||||
return timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeType(Integer timeType) {
|
|
||||||
this.timeType = timeType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeFormat() {
|
|
||||||
return timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeFormat(Integer timeFormat) {
|
|
||||||
this.timeFormat = timeFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getFormItemIds() {
|
|
||||||
return formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormItemIds(String formItemIds) {
|
|
||||||
this.formItemIds = formItemIds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getTimeRange() {
|
|
||||||
return timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeRange(Integer timeRange) {
|
|
||||||
this.timeRange = timeRange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSeq() {
|
|
||||||
return seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSeq(Integer seq) {
|
|
||||||
this.seq = seq;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<FormItemVO> getFormItemList() {
|
|
||||||
return formItemList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormItemList(List<FormItemVO> formItemList) {
|
|
||||||
this.formItemList = formItemList;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "FormVO{" +
|
|
||||||
"formId=" + formId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", formName='" + formName + '\'' +
|
|
||||||
", content='" + content + '\'' +
|
|
||||||
", fromType=" + fromType +
|
|
||||||
", timeType=" + timeType +
|
|
||||||
", timeFormat=" + timeFormat +
|
|
||||||
", formItemIds='" + formItemIds + '\'' +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", timeRange=" + timeRange +
|
|
||||||
", seq=" + seq +
|
|
||||||
", formItemList=" + formItemList +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.tmerclub.cloud.api.user.vo.MemberOverviewVO;
|
import com.tmerclub.cloud.api.user.vo.MemberOverviewVO;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +12,8 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author lhd
|
* @author lhd
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MemberSurveyRespVO implements Serializable {
|
public class MemberSurveyRespVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -17,27 +21,5 @@ public class MemberSurveyRespVO implements Serializable {
|
|||||||
|
|
||||||
private List<MemberOverviewVO> memberOverviewModelList;
|
private List<MemberOverviewVO> memberOverviewModelList;
|
||||||
|
|
||||||
public MemberOverviewVO getMemberOverviewModel() {
|
|
||||||
return memberOverviewModel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMemberOverviewModel(MemberOverviewVO memberOverviewModel) {
|
|
||||||
this.memberOverviewModel = memberOverviewModel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<MemberOverviewVO> getMemberOverviewModelList() {
|
|
||||||
return memberOverviewModelList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMemberOverviewModelList(List<MemberOverviewVO> memberOverviewModelList) {
|
|
||||||
this.memberOverviewModelList = memberOverviewModelList;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MemberSurveyRespVO{" +
|
|
||||||
"memberOverviewModel=" + memberOverviewModel +
|
|
||||||
", memberOverviewModelList=" + memberOverviewModelList +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MemberTrendExcelVO implements Serializable {
|
public class MemberTrendExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -34,36 +38,5 @@ public class MemberTrendExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"会员分析", "付费会员增加人数"})
|
@ExcelProperty({"会员分析", "付费会员增加人数"})
|
||||||
private Integer pay;
|
private Integer pay;
|
||||||
|
|
||||||
public String getDate() {
|
|
||||||
return date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDate(String date) {
|
|
||||||
this.date = date;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNormal() {
|
|
||||||
return normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNormal(Integer normal) {
|
|
||||||
this.normal = normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPay() {
|
|
||||||
return pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPay(Integer pay) {
|
|
||||||
this.pay = pay;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MemberTrendExcelVO{" +
|
|
||||||
"date='" + date + '\'' +
|
|
||||||
", normal=" + normal +
|
|
||||||
", pay=" + pay +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyseUserVO extends BaseVO implements Serializable {
|
public class ProductAnalyseUserVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -49,108 +53,5 @@ public class ProductAnalyseUserVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "加购")
|
@Schema(description = "加购")
|
||||||
private Integer isPlusShopCart;
|
private Integer isPlusShopCart;
|
||||||
|
|
||||||
public Long getProductAnalyseUserId() {
|
|
||||||
return productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseUserId(Long productAnalyseUserId) {
|
|
||||||
this.productAnalyseUserId = productAnalyseUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUuid() {
|
|
||||||
return uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUuid(String uuid) {
|
|
||||||
this.uuid = uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(String spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsVisit() {
|
|
||||||
return isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsVisit(Integer isVisit) {
|
|
||||||
this.isVisit = isVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsClick() {
|
|
||||||
return isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsClick(Integer isClick) {
|
|
||||||
this.isClick = isClick;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsShareVisit() {
|
|
||||||
return isShareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsShareVisit(Integer isShareVisit) {
|
|
||||||
this.isShareVisit = isShareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPlaceOrder() {
|
|
||||||
return isPlaceOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPlaceOrder(Integer isPlaceOrder) {
|
|
||||||
this.isPlaceOrder = isPlaceOrder;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPay() {
|
|
||||||
return isPay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPay(Integer isPay) {
|
|
||||||
this.isPay = isPay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPlusShopCart() {
|
|
||||||
return isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPlusShopCart(Integer isPlusShopCart) {
|
|
||||||
this.isPlusShopCart = isPlusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyseUserVO{" +
|
|
||||||
"productAnalyseUserId=" + productAnalyseUserId +
|
|
||||||
",productAnalyseId=" + productAnalyseId +
|
|
||||||
",uuid=" + uuid +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",isVisit=" + isVisit +
|
|
||||||
",isClick=" + isClick +
|
|
||||||
",isShareVisit=" + isShareVisit +
|
|
||||||
",isPlaceOrder=" + isPlaceOrder +
|
|
||||||
",isPay=" + isPay +
|
|
||||||
",isPlusShopCart=" + isPlusShopCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductAnalyseVO extends BaseVO implements Serializable {
|
public class ProductAnalyseVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -52,117 +56,4 @@ public class ProductAnalyseVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "加购数量")
|
@Schema(description = "加购数量")
|
||||||
private Integer plusShopCart;
|
private Integer plusShopCart;
|
||||||
|
|
||||||
public Long getProductAnalyseId() {
|
|
||||||
return productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductAnalyseId(Long productAnalyseId) {
|
|
||||||
this.productAnalyseId = productAnalyseId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPageId() {
|
|
||||||
return pageId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPageId(Long pageId) {
|
|
||||||
this.pageId = pageId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisis() {
|
|
||||||
return visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisis(Long visis) {
|
|
||||||
this.visis = visis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getClick() {
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClick(Long click) {
|
|
||||||
this.click = click;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareVisit() {
|
|
||||||
return shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareVisit(Long shareVisit) {
|
|
||||||
this.shareVisit = shareVisit;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Double placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Double payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Integer plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductAnalyseVO{" +
|
|
||||||
"productAnalyseId=" + productAnalyseId +
|
|
||||||
",createDate=" + createDate +
|
|
||||||
",pageId=" + pageId +
|
|
||||||
",systemType=" + systemType +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",visis=" + visis +
|
|
||||||
",click=" + click +
|
|
||||||
",shareVisit=" + shareVisit +
|
|
||||||
",placeOrderAmount=" + placeOrderAmount +
|
|
||||||
",payAmount=" + payAmount +
|
|
||||||
",plusShopCart=" + plusShopCart +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -9,6 +11,8 @@ import java.io.Serializable;
|
|||||||
* @author chiley
|
* @author chiley
|
||||||
* @date 2022/6/24 13:47
|
* @date 2022/6/24 13:47
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ProductFlowInfoVO implements Serializable {
|
public class ProductFlowInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,90 +40,5 @@ public class ProductFlowInfoVO implements Serializable {
|
|||||||
@Schema(description = "访问-支付转化率")
|
@Schema(description = "访问-支付转化率")
|
||||||
private Double payRate;
|
private Double payRate;
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuName() {
|
|
||||||
return spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuName(String spuName) {
|
|
||||||
this.spuName = spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuImg() {
|
|
||||||
return spuImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuImg(String spuImg) {
|
|
||||||
this.spuImg = spuImg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(String userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisitCount() {
|
|
||||||
return visitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitCount(Long visitCount) {
|
|
||||||
this.visitCount = visitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisitUserCount() {
|
|
||||||
return visitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUserCount(Long visitUserCount) {
|
|
||||||
this.visitUserCount = visitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayUserCount() {
|
|
||||||
return payUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayUserCount(Long payUserCount) {
|
|
||||||
this.payUserCount = payUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayRate() {
|
|
||||||
return payRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayRate(Double payRate) {
|
|
||||||
this.payRate = payRate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ProductFlowInfoVO{" +
|
|
||||||
"spuId=" + spuId +
|
|
||||||
", spuName='" + spuName + '\'' +
|
|
||||||
", spuImg='" + spuImg + '\'' +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", visitCount=" + visitCount +
|
|
||||||
", visitUserCount=" + visitUserCount +
|
|
||||||
", payUserCount=" + payUserCount +
|
|
||||||
", payRate=" + payRate +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +13,8 @@ import java.util.List;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/5/25 14:31
|
* @Date 2021/5/25 14:31
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ShopFlowInfoVO implements Serializable {
|
public class ShopFlowInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,81 +41,4 @@ public class ShopFlowInfoVO implements Serializable {
|
|||||||
@Schema(description = "商品访问流量排行榜")
|
@Schema(description = "商品访问流量排行榜")
|
||||||
private List<ProductFlowInfoVO> prodRanking;
|
private List<ProductFlowInfoVO> prodRanking;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getVisitCount() {
|
|
||||||
return visitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitCount(Long visitCount) {
|
|
||||||
this.visitCount = visitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getYesterdayVisitCount() {
|
|
||||||
return yesterdayVisitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setYesterdayVisitCount(Long yesterdayVisitCount) {
|
|
||||||
this.yesterdayVisitCount = yesterdayVisitCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitUserCount() {
|
|
||||||
return visitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUserCount(Integer visitUserCount) {
|
|
||||||
this.visitUserCount = visitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getNewVisitUserCount() {
|
|
||||||
return newVisitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNewVisitUserCount(Integer newVisitUserCount) {
|
|
||||||
this.newVisitUserCount = newVisitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOldVisitUserCount() {
|
|
||||||
return oldVisitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOldVisitUserCount(Integer oldVisitUserCount) {
|
|
||||||
this.oldVisitUserCount = oldVisitUserCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProductFlowInfoVO> getProdRanking() {
|
|
||||||
return prodRanking;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdRanking(List<ProductFlowInfoVO> prodRanking) {
|
|
||||||
this.prodRanking = prodRanking;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ShopFlowInfoVO{" +
|
|
||||||
"shopId=" + shopId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", visitCount=" + visitCount +
|
|
||||||
", yesterdayVisitCount=" + yesterdayVisitCount +
|
|
||||||
", visitUserCount=" + visitUserCount +
|
|
||||||
", newVisitUserCount=" + newVisitUserCount +
|
|
||||||
", oldVisitUserCount=" + oldVisitUserCount +
|
|
||||||
", prodRanking=" + prodRanking +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 单个商品趋势图
|
* 单个商品趋势图
|
||||||
* @author gaozijie
|
* @author gaozijie
|
||||||
* @date 2023-10-09
|
* @date 2023-10-09
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class SingleProdTrendVO {
|
public class SingleProdTrendVO {
|
||||||
|
|
||||||
@Schema(description = "当前日期")
|
@Schema(description = "当前日期")
|
||||||
@ -27,54 +31,4 @@ public class SingleProdTrendVO {
|
|||||||
public SingleProdTrendVO() {
|
public SingleProdTrendVO() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCurrentDay() {
|
|
||||||
return currentDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCurrentDay(String currentDay) {
|
|
||||||
this.currentDay = currentDay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitor() {
|
|
||||||
return visitor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitor(Integer visitor) {
|
|
||||||
this.visitor = visitor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBrowse() {
|
|
||||||
return browse;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBrowse(Long browse) {
|
|
||||||
this.browse = browse;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayPerson() {
|
|
||||||
return payPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPerson(Integer payPerson) {
|
|
||||||
this.payPerson = payPerson;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPayNum() {
|
|
||||||
return payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayNum(Integer payNum) {
|
|
||||||
this.payNum = payNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SingleProdTrendVO{" +
|
|
||||||
"currentDay='" + currentDay + '\'' +
|
|
||||||
", visitor=" + visitor +
|
|
||||||
", browse=" + browse +
|
|
||||||
", payPerson=" + payPerson +
|
|
||||||
", payNum=" + payNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
@ -9,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-06-02
|
* @date 2021-06-02
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class SystemVO implements Serializable {
|
public class SystemVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -39,83 +44,6 @@ public class SystemVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer ios;
|
private Integer ios;
|
||||||
|
|
||||||
public Integer getUserNums() {
|
|
||||||
return userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserNums(Integer userNums) {
|
|
||||||
this.userNums = userNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAll() {
|
|
||||||
return all;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAll(Integer all) {
|
|
||||||
this.all = all;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getPc() {
|
|
||||||
return pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPc(Integer pc) {
|
|
||||||
this.pc = pc;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getH5() {
|
|
||||||
return h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setH5(Integer h5) {
|
|
||||||
this.h5 = h5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getApplets() {
|
|
||||||
return applets;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setApplets(Integer applets) {
|
|
||||||
this.applets = applets;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getAndroid() {
|
|
||||||
return android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAndroid(Integer android) {
|
|
||||||
this.android = android;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIos() {
|
|
||||||
return ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIos(Integer ios) {
|
|
||||||
this.ios = ios;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SystemVO{" +
|
|
||||||
"userNums=" + userNums +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", all=" + all +
|
|
||||||
", pc=" + pc +
|
|
||||||
", h5=" + h5 +
|
|
||||||
", applets=" + applets +
|
|
||||||
", android=" + android +
|
|
||||||
", ios=" + ios +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
|
|
||||||
public SystemVO() {
|
public SystemVO() {
|
||||||
pc = 0;
|
pc = 0;
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.tmerclub.cloud.flow.vo;
|
package com.tmerclub.cloud.flow.vo;
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -8,6 +10,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserAnalysisDataExcelVO implements Serializable {
|
public class UserAnalysisDataExcelVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -49,81 +53,4 @@ public class UserAnalysisDataExcelVO implements Serializable {
|
|||||||
@ExcelProperty({"会员地域分布信息", "商品浏览量"})
|
@ExcelProperty({"会员地域分布信息", "商品浏览量"})
|
||||||
private Integer prodVisitNums;
|
private Integer prodVisitNums;
|
||||||
|
|
||||||
public String getProvinceName() {
|
|
||||||
return provinceName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceName(String provinceName) {
|
|
||||||
this.provinceName = provinceName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Long plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Double placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Double payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getClickNums() {
|
|
||||||
return clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClickNums(Integer clickNums) {
|
|
||||||
this.clickNums = clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdVisitUser() {
|
|
||||||
return prodVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdVisitUser(Integer prodVisitUser) {
|
|
||||||
this.prodVisitUser = prodVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdVisitNums() {
|
|
||||||
return prodVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdVisitNums(Integer prodVisitNums) {
|
|
||||||
this.prodVisitNums = prodVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserAnalysisDataExcelVO{" +
|
|
||||||
"provinceName='" + provinceName + '\'' +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", visitNums='" + visitNums + '\'' +
|
|
||||||
", clickNums=" + clickNums +
|
|
||||||
", prodVisitUser='" + prodVisitUser + '\'' +
|
|
||||||
", prodVisitNums='" + prodVisitNums + '\'' +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +17,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserAnalysisVO extends BaseVO implements Serializable {
|
public class UserAnalysisVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -68,162 +72,4 @@ public class UserAnalysisVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "商品id列表")
|
@Schema(description = "商品id列表")
|
||||||
private List<Long> spuIdList;
|
private List<Long> spuIdList;
|
||||||
|
|
||||||
public Long getUserAnalysisId() {
|
|
||||||
return userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAnalysisId(Long userAnalysisId) {
|
|
||||||
this.userAnalysisId = userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(String userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProvinceId() {
|
|
||||||
return provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceId(Long provinceId) {
|
|
||||||
this.provinceId = provinceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProvinceName() {
|
|
||||||
return provinceName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProvinceName(String provinceName) {
|
|
||||||
this.provinceName = provinceName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlusShopCart() {
|
|
||||||
return plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlusShopCart(Long plusShopCart) {
|
|
||||||
this.plusShopCart = plusShopCart;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPlaceOrderAmount() {
|
|
||||||
return placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlaceOrderAmount(Long placeOrderAmount) {
|
|
||||||
this.placeOrderAmount = placeOrderAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayAmount() {
|
|
||||||
return payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayAmount(Long payAmount) {
|
|
||||||
this.payAmount = payAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitNums() {
|
|
||||||
return visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitNums(Integer visitNums) {
|
|
||||||
this.visitNums = visitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getClickNums() {
|
|
||||||
return clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setClickNums(Integer clickNums) {
|
|
||||||
this.clickNums = clickNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getUserType() {
|
|
||||||
return userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserType(Integer userType) {
|
|
||||||
this.userType = userType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSessionNums() {
|
|
||||||
return sessionNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSessionNums(Integer sessionNums) {
|
|
||||||
this.sessionNums = sessionNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSystemType() {
|
|
||||||
return systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSystemType(Integer systemType) {
|
|
||||||
this.systemType = systemType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdVisitUser() {
|
|
||||||
return prodVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdVisitUser(Integer prodVisitUser) {
|
|
||||||
this.prodVisitUser = prodVisitUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdVisitNums() {
|
|
||||||
return prodVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdVisitNums(Integer prodVisitNums) {
|
|
||||||
this.prodVisitNums = prodVisitNums;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Long> getSpuIdList() {
|
|
||||||
return spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuIdList(List<Long> spuIdList) {
|
|
||||||
this.spuIdList = spuIdList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVisitUserNum() {
|
|
||||||
return visitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisitUserNum(Integer visitUserNum) {
|
|
||||||
this.visitUserNum = visitUserNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserAnalysisVO{" +
|
|
||||||
"userAnalysisId=" + userAnalysisId +
|
|
||||||
", createDate=" + createDate +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", provinceId=" + provinceId +
|
|
||||||
", provinceName='" + provinceName + '\'' +
|
|
||||||
", plusShopCart=" + plusShopCart +
|
|
||||||
", placeOrderAmount=" + placeOrderAmount +
|
|
||||||
", payAmount=" + payAmount +
|
|
||||||
", visitNums=" + visitNums +
|
|
||||||
", visitUserNum=" + visitUserNum +
|
|
||||||
", clickNums=" + clickNums +
|
|
||||||
", userType=" + userType +
|
|
||||||
", sessionNums=" + sessionNums +
|
|
||||||
", systemType=" + systemType +
|
|
||||||
", prodVisitUser=" + prodVisitUser +
|
|
||||||
", prodVisitNums=" + prodVisitNums +
|
|
||||||
", spuIdList=" + spuIdList +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.flow.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-05-21 15:25:19
|
* @date 2021-05-21 15:25:19
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class UserVisitProdAnalysisVO extends BaseVO implements Serializable {
|
public class UserVisitProdAnalysisVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -29,45 +33,4 @@ public class UserVisitProdAnalysisVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "商品id")
|
@Schema(description = "商品id")
|
||||||
private Long spuId;
|
private Long spuId;
|
||||||
|
|
||||||
public Long getUserVisitProdAnalysisId() {
|
|
||||||
return userVisitProdAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserVisitProdAnalysisId(Long userVisitProdAnalysisId) {
|
|
||||||
this.userVisitProdAnalysisId = userVisitProdAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserAnalysisId() {
|
|
||||||
return userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserAnalysisId(Long userAnalysisId) {
|
|
||||||
this.userAnalysisId = userAnalysisId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateDate() {
|
|
||||||
return createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateDate(Date createDate) {
|
|
||||||
this.createDate = createDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "UserVisitProdAnalysisVO{" +
|
|
||||||
"userVisitProdAnalysisId=" + userVisitProdAnalysisId +
|
|
||||||
", userAnalysisId=" + userAnalysisId +
|
|
||||||
", createDate=" + createDate +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
package com.tmerclub.cloud.group.bo;
|
package com.tmerclub.cloud.group.bo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupOpenNotifyBO {
|
public class GroupOpenNotifyBO {
|
||||||
|
|
||||||
@Schema(description = "拼团团队id")
|
@Schema(description = "拼团团队id")
|
||||||
@ -16,36 +20,4 @@ public class GroupOpenNotifyBO {
|
|||||||
@Schema(description = "订单id")
|
@Schema(description = "订单id")
|
||||||
private Long orderId;
|
private Long orderId;
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdentityType() {
|
|
||||||
return identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityType(Integer identityType) {
|
|
||||||
this.identityType = identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupOpenNotifyBO{" +
|
|
||||||
"groupTeamId=" + groupTeamId +
|
|
||||||
", identityType=" + identityType +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,17 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.group.bo;
|
package com.tmerclub.cloud.group.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
/**
|
/**
|
||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021/4/12
|
* @date 2021/4/12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupOrderBO implements Serializable {
|
public class GroupOrderBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -57,99 +62,4 @@ public class GroupOrderBO implements Serializable {
|
|||||||
|
|
||||||
private Long spuId;
|
private Long spuId;
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityProdPrice() {
|
|
||||||
return activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityProdPrice(Long activityProdPrice) {
|
|
||||||
this.activityProdPrice = activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayPrice() {
|
|
||||||
return payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPrice(Long payPrice) {
|
|
||||||
this.payPrice = payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupOrderBO{" +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupTeamId=" + groupTeamId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", shareUserId=" + shareUserId +
|
|
||||||
", activityProdPrice=" + activityProdPrice +
|
|
||||||
", payPrice=" + payPrice +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", count=" + count +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.bo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.group.bo.mongo.MongoGroupOrderBO;
|
import com.tmerclub.cloud.group.bo.mongo.MongoGroupOrderBO;
|
||||||
import com.tmerclub.cloud.group.bo.mongo.MongoGroupTeamBO;
|
import com.tmerclub.cloud.group.bo.mongo.MongoGroupTeamBO;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -10,6 +12,8 @@ import java.io.Serializable;
|
|||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSaveNotifyBO implements Serializable {
|
public class GroupSaveNotifyBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -18,27 +22,4 @@ public class GroupSaveNotifyBO implements Serializable {
|
|||||||
|
|
||||||
private MongoGroupOrderBO mongoGroupOrderBO;
|
private MongoGroupOrderBO mongoGroupOrderBO;
|
||||||
|
|
||||||
public MongoGroupTeamBO getMongoGroupTeamBO() {
|
|
||||||
return mongoGroupTeamBO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMongoGroupTeamBO(MongoGroupTeamBO mongoGroupTeamBO) {
|
|
||||||
this.mongoGroupTeamBO = mongoGroupTeamBO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public MongoGroupOrderBO getMongoGroupOrderBO() {
|
|
||||||
return mongoGroupOrderBO;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMongoGroupOrderBO(MongoGroupOrderBO mongoGroupOrderBO) {
|
|
||||||
this.mongoGroupOrderBO = mongoGroupOrderBO;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSaveNotifyBO{" +
|
|
||||||
"mongoGroupTeamBO=" + mongoGroupTeamBO +
|
|
||||||
", mongoGroupOrderBO=" + mongoGroupOrderBO +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.bo.mongo;
|
package com.tmerclub.cloud.group.bo.mongo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -21,6 +23,8 @@ import java.util.Date;
|
|||||||
@CompoundIndex(name = "group_activity_idx", def = "{'groupActivityId':1}")
|
@CompoundIndex(name = "group_activity_idx", def = "{'groupActivityId':1}")
|
||||||
})
|
})
|
||||||
@Document("group_order")
|
@Document("group_order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoGroupOrderBO implements Serializable {
|
public class MongoGroupOrderBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -65,126 +69,5 @@ public class MongoGroupOrderBO implements Serializable {
|
|||||||
@Schema(description = "商品数量")
|
@Schema(description = "商品数量")
|
||||||
private Integer count;
|
private Integer count;
|
||||||
|
|
||||||
public Long getGroupOrderId() {
|
|
||||||
return groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderId(Long groupOrderId) {
|
|
||||||
this.groupOrderId = groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdentityType() {
|
|
||||||
return identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityType(Integer identityType) {
|
|
||||||
this.identityType = identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityProdPrice() {
|
|
||||||
return activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityProdPrice(Long activityProdPrice) {
|
|
||||||
this.activityProdPrice = activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayPrice() {
|
|
||||||
return payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPrice(Long payPrice) {
|
|
||||||
this.payPrice = payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoGroupOrderBO{" +
|
|
||||||
"groupOrderId=" + groupOrderId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupTeamId=" + groupTeamId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", identityType=" + identityType +
|
|
||||||
", activityProdPrice=" + activityProdPrice +
|
|
||||||
", payPrice=" + payPrice +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", status=" + status +
|
|
||||||
", count=" + count +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.bo.mongo;
|
package com.tmerclub.cloud.group.bo.mongo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
import org.springframework.data.mongodb.core.index.CompoundIndex;
|
||||||
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
import org.springframework.data.mongodb.core.index.CompoundIndexes;
|
||||||
@ -22,6 +24,8 @@ import java.util.Date;
|
|||||||
@CompoundIndex(name = "group_activity_idx", def = "{'groupActivityId':1}")
|
@CompoundIndex(name = "group_activity_idx", def = "{'groupActivityId':1}")
|
||||||
})
|
})
|
||||||
@Document("group_team")
|
@Document("group_team")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoGroupTeamBO implements Serializable {
|
public class MongoGroupTeamBO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -63,117 +67,5 @@ public class MongoGroupTeamBO implements Serializable {
|
|||||||
@Schema(description = "团长user_Id")
|
@Schema(description = "团长user_Id")
|
||||||
private Long shareUserId;
|
private Long shareUserId;
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getJoinNum() {
|
|
||||||
return joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinNum(Integer joinNum) {
|
|
||||||
this.joinNum = joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalPrice() {
|
|
||||||
return totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalPrice(Long totalPrice) {
|
|
||||||
this.totalPrice = totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoGroupTeamBO{" +
|
|
||||||
", groupTeamId=" + groupTeamId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
", groupSpuId=" + groupSpuId +
|
|
||||||
", joinNum=" + joinNum +
|
|
||||||
", status=" + status +
|
|
||||||
", totalPrice=" + totalPrice +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", shareUserId=" + shareUserId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.dto;
|
package com.tmerclub.cloud.group.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:31
|
* @date 2021-03-20 10:39:31
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupActivityDTO implements Serializable {
|
public class GroupActivityDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -4,6 +4,8 @@ package com.tmerclub.cloud.group.dto;
|
|||||||
import com.tmerclub.cloud.common.order.dto.OrderDTO;
|
import com.tmerclub.cloud.common.order.dto.OrderDTO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-04-07 10:39:32
|
* @date 2021-04-07 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupOrderDTO extends OrderDTO implements Serializable {
|
public class GroupOrderDTO extends OrderDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,18 +25,5 @@ public class GroupOrderDTO extends OrderDTO implements Serializable {
|
|||||||
@Schema(description = "拼团商品规格Id", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "拼团商品规格Id", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
private Long groupSkuId;
|
private Long groupSkuId;
|
||||||
|
|
||||||
public Long getGroupSkuId() {
|
|
||||||
return groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuId(Long groupSkuId) {
|
|
||||||
this.groupSkuId = groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupOrderDTO{" +
|
|
||||||
", groupSkuId=" + groupSkuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.dto;
|
package com.tmerclub.cloud.group.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSkuDTO implements Serializable {
|
public class GroupSkuDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -30,54 +34,5 @@ public class GroupSkuDTO implements Serializable {
|
|||||||
@Schema(description = "已售数量")
|
@Schema(description = "已售数量")
|
||||||
private Long sellNum;
|
private Long sellNum;
|
||||||
|
|
||||||
public Long getGroupSkuId() {
|
|
||||||
return groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuId(Long groupSkuId) {
|
|
||||||
this.groupSkuId = groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActPrice() {
|
|
||||||
return actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActPrice(Long actPrice) {
|
|
||||||
this.actPrice = actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSellNum() {
|
|
||||||
return sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSellNum(Long sellNum) {
|
|
||||||
this.sellNum = sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSkuDTO{" +
|
|
||||||
"groupSkuId=" + groupSkuId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",skuId=" + skuId +
|
|
||||||
",actPrice=" + actPrice +
|
|
||||||
",sellNum=" + sellNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.dto;
|
package com.tmerclub.cloud.group.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSpuDTO implements Serializable {
|
public class GroupSpuDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -36,72 +40,5 @@ public class GroupSpuDTO implements Serializable {
|
|||||||
@Schema(description = "状态(1:正常 0:失效 -1:已删除)")
|
@Schema(description = "状态(1:正常 0:失效 -1:已删除)")
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupOrderCount() {
|
|
||||||
return groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderCount(Long groupOrderCount) {
|
|
||||||
this.groupOrderCount = groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupNumberCount() {
|
|
||||||
return groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumberCount(Long groupNumberCount) {
|
|
||||||
this.groupNumberCount = groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSpuDTO{" +
|
|
||||||
"groupSpuId=" + groupSpuId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",groupOrderCount=" + groupOrderCount +
|
|
||||||
",groupNumberCount=" + groupNumberCount +
|
|
||||||
",status=" + status +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.dto;
|
package com.tmerclub.cloud.group.dto;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupTeamDTO implements Serializable {
|
public class GroupTeamDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -46,99 +50,5 @@ public class GroupTeamDTO implements Serializable {
|
|||||||
@Schema(description = "团长user_Id")
|
@Schema(description = "团长user_Id")
|
||||||
private Long shareUserId;
|
private Long shareUserId;
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getJoinNum() {
|
|
||||||
return joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinNum(Integer joinNum) {
|
|
||||||
this.joinNum = joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalPrice() {
|
|
||||||
return totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalPrice(Long totalPrice) {
|
|
||||||
this.totalPrice = totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupTeamDTO{" +
|
|
||||||
"groupTeamId=" + groupTeamId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",groupSpuId=" + groupSpuId +
|
|
||||||
",joinNum=" + joinNum +
|
|
||||||
",status=" + status +
|
|
||||||
",totalPrice=" + totalPrice +
|
|
||||||
",startTime=" + startTime +
|
|
||||||
",endTime=" + endTime +
|
|
||||||
",shareUserId=" + shareUserId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,8 @@ package com.tmerclub.cloud.group.dto;
|
|||||||
import com.tmerclub.cloud.common.order.dto.SubmitOrderDTO;
|
import com.tmerclub.cloud.common.order.dto.SubmitOrderDTO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2021-04-07 10:39:32
|
* @date 2021-04-07 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class SubmitGroupOrderDTO extends SubmitOrderDTO implements Serializable {
|
public class SubmitGroupOrderDTO extends SubmitOrderDTO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.model;
|
package com.tmerclub.cloud.group.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:31
|
* @date 2021-03-20 10:39:31
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupActivity extends BaseModel implements Serializable {
|
public class GroupActivity extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -97,155 +101,4 @@ public class GroupActivity extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getActivityName() {
|
|
||||||
return activityName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityName(String activityName) {
|
|
||||||
this.activityName = activityName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getGroupNumber() {
|
|
||||||
return groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumber(Integer groupNumber) {
|
|
||||||
this.groupNumber = groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasMaxNum() {
|
|
||||||
return hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasMaxNum(Integer hasMaxNum) {
|
|
||||||
this.hasMaxNum = hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getMaxNum() {
|
|
||||||
return maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxNum(Integer maxNum) {
|
|
||||||
this.maxNum = maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasRobot() {
|
|
||||||
return hasRobot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasRobot(Integer hasRobot) {
|
|
||||||
this.hasRobot = hasRobot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreheat() {
|
|
||||||
return isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreheat(Integer isPreheat) {
|
|
||||||
this.isPreheat = isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasGroupTip() {
|
|
||||||
return hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasGroupTip(Integer hasGroupTip) {
|
|
||||||
this.hasGroupTip = hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupOrderCount() {
|
|
||||||
return groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderCount(Long groupOrderCount) {
|
|
||||||
this.groupOrderCount = groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupNumberCount() {
|
|
||||||
return groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumberCount(Long groupNumberCount) {
|
|
||||||
this.groupNumberCount = groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupActivity{" +
|
|
||||||
"groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", activityName='" + activityName + '\'' +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", groupNumber=" + groupNumber +
|
|
||||||
", hasMaxNum=" + hasMaxNum +
|
|
||||||
", maxNum=" + maxNum +
|
|
||||||
", hasRobot=" + hasRobot +
|
|
||||||
", isPreheat=" + isPreheat +
|
|
||||||
", hasGroupTip=" + hasGroupTip +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", groupOrderCount=" + groupOrderCount +
|
|
||||||
", groupNumberCount=" + groupNumberCount +
|
|
||||||
", price=" + price +
|
|
||||||
", status=" + status +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.model;
|
package com.tmerclub.cloud.group.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupOrder extends BaseModel implements Serializable {
|
public class GroupOrder extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -71,108 +75,5 @@ public class GroupOrder extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer count;
|
private Integer count;
|
||||||
|
|
||||||
public Long getGroupOrderId() {
|
|
||||||
return groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderId(Long groupOrderId) {
|
|
||||||
this.groupOrderId = groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdentityType() {
|
|
||||||
return identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityType(Integer identityType) {
|
|
||||||
this.identityType = identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityProdPrice() {
|
|
||||||
return activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityProdPrice(Long activityProdPrice) {
|
|
||||||
this.activityProdPrice = activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayPrice() {
|
|
||||||
return payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPrice(Long payPrice) {
|
|
||||||
this.payPrice = payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupOrder{" +
|
|
||||||
"groupOrderId=" + groupOrderId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupTeamId=" + groupTeamId +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", identityType=" + identityType +
|
|
||||||
", activityProdPrice=" + activityProdPrice +
|
|
||||||
", payPrice=" + payPrice +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", status=" + status +
|
|
||||||
", count=" + count +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.model;
|
package com.tmerclub.cloud.group.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSku extends BaseModel implements Serializable {
|
public class GroupSku extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -41,54 +45,4 @@ public class GroupSku extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long sellNum;
|
private Long sellNum;
|
||||||
|
|
||||||
public Long getGroupSkuId() {
|
|
||||||
return groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuId(Long groupSkuId) {
|
|
||||||
this.groupSkuId = groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActPrice() {
|
|
||||||
return actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActPrice(Long actPrice) {
|
|
||||||
this.actPrice = actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSellNum() {
|
|
||||||
return sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSellNum(Long sellNum) {
|
|
||||||
this.sellNum = sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSku{" +
|
|
||||||
"groupSkuId=" + groupSkuId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",skuId=" + skuId +
|
|
||||||
",actPrice=" + actPrice +
|
|
||||||
",sellNum=" + sellNum +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.model;
|
package com.tmerclub.cloud.group.model;
|
||||||
|
|
||||||
import com.tmerclub.cloud.common.model.BaseModel;
|
import com.tmerclub.cloud.common.model.BaseModel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupTeam extends BaseModel implements Serializable {
|
public class GroupTeam extends BaseModel implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -66,101 +70,4 @@ public class GroupTeam extends BaseModel implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Long shareUserId;
|
private Long shareUserId;
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getJoinNum() {
|
|
||||||
return joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinNum(Integer joinNum) {
|
|
||||||
this.joinNum = joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalPrice() {
|
|
||||||
return totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalPrice(Long totalPrice) {
|
|
||||||
this.totalPrice = totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupTeam{" +
|
|
||||||
"groupTeamId=" + groupTeamId +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",groupSpuId=" + groupSpuId +
|
|
||||||
",joinNum=" + joinNum +
|
|
||||||
",status=" + status +
|
|
||||||
",totalPrice=" + totalPrice +
|
|
||||||
",startTime=" + startTime +
|
|
||||||
",endTime=" + endTime +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",shareUserId=" + shareUserId +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -15,6 +17,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:31
|
* @date 2021-03-20 10:39:31
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupActivityVO extends BaseVO implements Serializable {
|
public class GroupActivityVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -78,192 +82,4 @@ public class GroupActivityVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "商品价格(sku最低价)")
|
@Schema(description = "商品价格(sku最低价)")
|
||||||
private Long price;
|
private Long price;
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShopName() {
|
|
||||||
return shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopName(String shopName) {
|
|
||||||
this.shopName = shopName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getActivityName() {
|
|
||||||
return activityName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityName(String activityName) {
|
|
||||||
this.activityName = activityName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getGroupNumber() {
|
|
||||||
return groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumber(Integer groupNumber) {
|
|
||||||
this.groupNumber = groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasMaxNum() {
|
|
||||||
return hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasMaxNum(Integer hasMaxNum) {
|
|
||||||
this.hasMaxNum = hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getMaxNum() {
|
|
||||||
return maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxNum(Integer maxNum) {
|
|
||||||
this.maxNum = maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasRobot() {
|
|
||||||
return hasRobot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasRobot(Integer hasRobot) {
|
|
||||||
this.hasRobot = hasRobot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreheat() {
|
|
||||||
return isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreheat(Integer isPreheat) {
|
|
||||||
this.isPreheat = isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasGroupTip() {
|
|
||||||
return hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasGroupTip(Integer hasGroupTip) {
|
|
||||||
this.hasGroupTip = hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupOrderCount() {
|
|
||||||
return groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderCount(Long groupOrderCount) {
|
|
||||||
this.groupOrderCount = groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupNumberCount() {
|
|
||||||
return groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumberCount(Long groupNumberCount) {
|
|
||||||
this.groupNumberCount = groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMainImgUrl() {
|
|
||||||
return mainImgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMainImgUrl(String mainImgUrl) {
|
|
||||||
this.mainImgUrl = mainImgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuName() {
|
|
||||||
return spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuName(String spuName) {
|
|
||||||
this.spuName = spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<GroupSkuVO> getGroupSkuList() {
|
|
||||||
return groupSkuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuList(List<GroupSkuVO> groupSkuList) {
|
|
||||||
this.groupSkuList = groupSkuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupActivityVO{" +
|
|
||||||
"groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", shopName='" + shopName + '\'' +
|
|
||||||
", activityName='" + activityName + '\'' +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", groupNumber=" + groupNumber +
|
|
||||||
", hasMaxNum=" + hasMaxNum +
|
|
||||||
", maxNum=" + maxNum +
|
|
||||||
", hasRobot=" + hasRobot +
|
|
||||||
", isPreheat=" + isPreheat +
|
|
||||||
", hasGroupTip=" + hasGroupTip +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", groupOrderCount=" + groupOrderCount +
|
|
||||||
", groupNumberCount=" + groupNumberCount +
|
|
||||||
", status=" + status +
|
|
||||||
", mainImgUrl='" + mainImgUrl + '\'' +
|
|
||||||
", spuName='" + spuName + '\'' +
|
|
||||||
", groupSkuList=" + groupSkuList +
|
|
||||||
", price=" + price +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
", updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSkuVO extends BaseVO implements Serializable {
|
public class GroupSkuVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,72 +41,4 @@ public class GroupSkuVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "sku名称")
|
@Schema(description = "sku名称")
|
||||||
private String skuName;
|
private String skuName;
|
||||||
|
|
||||||
public Long getGroupSkuId() {
|
|
||||||
return groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuId(Long groupSkuId) {
|
|
||||||
this.groupSkuId = groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActPrice() {
|
|
||||||
return actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActPrice(Long actPrice) {
|
|
||||||
this.actPrice = actPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSellNum() {
|
|
||||||
return sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSellNum(Long sellNum) {
|
|
||||||
this.sellNum = sellNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuName() {
|
|
||||||
return skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuName(String skuName) {
|
|
||||||
this.skuName = skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSkuVO{" +
|
|
||||||
"groupSkuId=" + groupSkuId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",skuId=" + skuId +
|
|
||||||
",actPrice=" + actPrice +
|
|
||||||
",price=" + price +
|
|
||||||
",sellNum=" + sellNum +
|
|
||||||
",skuName=" + skuName +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupSpuVO extends BaseVO implements Serializable {
|
public class GroupSpuVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -37,74 +41,4 @@ public class GroupSpuVO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "状态(1:正常 0:失效 -1:已删除)")
|
@Schema(description = "状态(1:正常 0:失效 -1:已删除)")
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupOrderCount() {
|
|
||||||
return groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderCount(Long groupOrderCount) {
|
|
||||||
this.groupOrderCount = groupOrderCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupNumberCount() {
|
|
||||||
return groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumberCount(Long groupNumberCount) {
|
|
||||||
this.groupNumberCount = groupNumberCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupSpuVO{" +
|
|
||||||
"groupSpuId=" + groupSpuId +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",groupActivityId=" + groupActivityId +
|
|
||||||
",spuId=" + spuId +
|
|
||||||
",groupOrderCount=" + groupOrderCount +
|
|
||||||
",groupNumberCount=" + groupNumberCount +
|
|
||||||
",status=" + status +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021-03-20 10:39:32
|
* @date 2021-03-20 10:39:32
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class GroupTeamVO extends BaseVO implements Serializable {
|
public class GroupTeamVO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -56,109 +60,4 @@ public class GroupTeamVO extends BaseVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer groupOrderStatus;
|
private Integer groupOrderStatus;
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getJoinNum() {
|
|
||||||
return joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinNum(Integer joinNum) {
|
|
||||||
this.joinNum = joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getTotalPrice() {
|
|
||||||
return totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTotalPrice(Long totalPrice) {
|
|
||||||
this.totalPrice = totalPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getGroupOrderStatus() {
|
|
||||||
return groupOrderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderStatus(Integer groupOrderStatus) {
|
|
||||||
this.groupOrderStatus = groupOrderStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "GroupTeamVO{" +
|
|
||||||
"groupTeamId=" + groupTeamId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", groupSpuId=" + groupSpuId +
|
|
||||||
", joinNum=" + joinNum +
|
|
||||||
", status=" + status +
|
|
||||||
", totalPrice=" + totalPrice +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", shareUserId=" + shareUserId +
|
|
||||||
", spuCount=" + spuCount +
|
|
||||||
", groupOrderStatus=" + groupOrderStatus +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.vo.app;
|
package com.tmerclub.cloud.group.vo.app;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021/3/26
|
* @date 2021/3/26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AppGroupActivityVO implements Serializable {
|
public class AppGroupActivityVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -75,191 +79,5 @@ public class AppGroupActivityVO implements Serializable {
|
|||||||
@Schema(description = "发货方式 1.供应商发货 2.仓库发货")
|
@Schema(description = "发货方式 1.供应商发货 2.仓库发货")
|
||||||
private Integer supplierDeliveryType;
|
private Integer supplierDeliveryType;
|
||||||
|
|
||||||
public Integer getSupplierDeliveryType() {
|
|
||||||
return supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierDeliveryType(Integer supplierDeliveryType) {
|
|
||||||
this.supplierDeliveryType = supplierDeliveryType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSupplierSpuType() {
|
|
||||||
return supplierSpuType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierSpuType(Integer supplierSpuType) {
|
|
||||||
this.supplierSpuType = supplierSpuType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getStartTime() {
|
|
||||||
return startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartTime(Date startTime) {
|
|
||||||
this.startTime = startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getGroupNumber() {
|
|
||||||
return groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumber(Integer groupNumber) {
|
|
||||||
this.groupNumber = groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasMaxNum() {
|
|
||||||
return hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasMaxNum(Integer hasMaxNum) {
|
|
||||||
this.hasMaxNum = hasMaxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getMaxNum() {
|
|
||||||
return maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxNum(Integer maxNum) {
|
|
||||||
this.maxNum = maxNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdCount() {
|
|
||||||
return prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdCount(Integer prodCount) {
|
|
||||||
this.prodCount = prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getJoinGroupTeamId() {
|
|
||||||
return joinGroupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinGroupTeamId(Long joinGroupTeamId) {
|
|
||||||
this.joinGroupTeamId = joinGroupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getHasGroupTip() {
|
|
||||||
return hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHasGroupTip(Integer hasGroupTip) {
|
|
||||||
this.hasGroupTip = hasGroupTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsPreheat() {
|
|
||||||
return isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsPreheat(Integer isPreheat) {
|
|
||||||
this.isPreheat = isPreheat;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityStatus(Integer activityStatus) {
|
|
||||||
this.activityStatus = activityStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getActivityStatus() {
|
|
||||||
return activityStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPrice() {
|
|
||||||
return price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrice(Long price) {
|
|
||||||
this.price = price;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<AppGroupSkuVO> getGroupSkuList() {
|
|
||||||
return groupSkuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuList(List<AppGroupSkuVO> groupSkuList) {
|
|
||||||
this.groupSkuList = groupSkuList;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getExpiresIn() {
|
|
||||||
return expiresIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExpiresIn(Long expiresIn) {
|
|
||||||
this.expiresIn = expiresIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getStartIn() {
|
|
||||||
return startIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartIn(Long startIn) {
|
|
||||||
this.startIn = startIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AppGroupActivityVO{" +
|
|
||||||
"groupActivityId=" + groupActivityId +
|
|
||||||
", status=" + status +
|
|
||||||
", startTime=" + startTime +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", groupNumber=" + groupNumber +
|
|
||||||
", hasMaxNum=" + hasMaxNum +
|
|
||||||
", maxNum=" + maxNum +
|
|
||||||
", prodCount=" + prodCount +
|
|
||||||
", joinGroupTeamId=" + joinGroupTeamId +
|
|
||||||
", hasGroupTip=" + hasGroupTip +
|
|
||||||
", isPreheat=" + isPreheat +
|
|
||||||
", activityStatus=" + activityStatus +
|
|
||||||
", price=" + price +
|
|
||||||
", spuId=" + spuId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", expiresIn=" + expiresIn +
|
|
||||||
", startIn=" + startIn +
|
|
||||||
", groupSkuList=" + groupSkuList +
|
|
||||||
", supplierSpuType=" + supplierSpuType +
|
|
||||||
", supplierDeliveryType=" + supplierDeliveryType +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo.app;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.product.vo.SkuComboVO;
|
import com.tmerclub.cloud.common.product.vo.SkuComboVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -12,6 +14,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021/3/26
|
* @date 2021/3/26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AppGroupSkuVO implements Serializable {
|
public class AppGroupSkuVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -51,118 +55,5 @@ public class AppGroupSkuVO implements Serializable {
|
|||||||
@Schema(description = "组合商品列表")
|
@Schema(description = "组合商品列表")
|
||||||
private List<SkuComboVO> skuComboList;
|
private List<SkuComboVO> skuComboList;
|
||||||
|
|
||||||
public List<SkuComboVO> getSkuComboList() {
|
|
||||||
return skuComboList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuComboList(List<SkuComboVO> skuComboList) {
|
|
||||||
this.skuComboList = skuComboList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSupplierStock() {
|
|
||||||
return supplierStock;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSupplierStock(Integer supplierStock) {
|
|
||||||
this.supplierStock = supplierStock;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupSkuId() {
|
|
||||||
return groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSkuId(Long groupSkuId) {
|
|
||||||
this.groupSkuId = groupSkuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSkuId() {
|
|
||||||
return skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuId(Long skuId) {
|
|
||||||
this.skuId = skuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSkuName() {
|
|
||||||
return skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkuName(String skuName) {
|
|
||||||
this.skuName = skuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public String getProperties() {
|
|
||||||
return properties;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProperties(String properties) {
|
|
||||||
this.properties = properties;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getSpuId() {
|
|
||||||
return spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuId(Long spuId) {
|
|
||||||
this.spuId = spuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPriceFee() {
|
|
||||||
return priceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPriceFee(Long priceFee) {
|
|
||||||
this.priceFee = priceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getMarketPriceFee() {
|
|
||||||
return marketPriceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMarketPriceFee(Long marketPriceFee) {
|
|
||||||
this.marketPriceFee = marketPriceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getImgUrl() {
|
|
||||||
return imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setImgUrl(String imgUrl) {
|
|
||||||
this.imgUrl = imgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStock() {
|
|
||||||
return stock;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStock(Integer stock) {
|
|
||||||
this.stock = stock;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AppGroupSkuVO{" +
|
|
||||||
"spuId=" + spuId +
|
|
||||||
", groupSkuId=" + groupSkuId +
|
|
||||||
", skuId=" + skuId +
|
|
||||||
", priceFee=" + priceFee +
|
|
||||||
", marketPriceFee=" + marketPriceFee +
|
|
||||||
", skuName='" + skuName + '\'' +
|
|
||||||
", imgUrl='" + imgUrl + '\'' +
|
|
||||||
", properties='" + properties + '\'' +
|
|
||||||
", stock=" + stock +
|
|
||||||
", supplierStock=" + supplierStock +
|
|
||||||
", status=" + status +
|
|
||||||
", skuComboList=" + skuComboList +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.group.vo.app;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.group.vo.mongo.MongoAppGroupUserVO;
|
import com.tmerclub.cloud.group.vo.mongo.MongoAppGroupUserVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -14,6 +16,8 @@ import java.util.List;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021/3/30
|
* @date 2021/3/30
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AppGroupTeamInfoVO implements Serializable {
|
public class AppGroupTeamInfoVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -47,99 +51,5 @@ public class AppGroupTeamInfoVO implements Serializable {
|
|||||||
@Schema(description = "售价,整数方式保存")
|
@Schema(description = "售价,整数方式保存")
|
||||||
private Long priceFee;
|
private Long priceFee;
|
||||||
|
|
||||||
public Integer getIsRefund() {
|
|
||||||
return isRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIsRefund(Integer isRefund) {
|
|
||||||
this.isRefund = isRefund;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getSpuMold() {
|
|
||||||
return spuMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuMold(Integer spuMold) {
|
|
||||||
this.spuMold = spuMold;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AppGroupActivityVO getGroupActivity() {
|
|
||||||
return groupActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivity(AppGroupActivityVO groupActivity) {
|
|
||||||
this.groupActivity = groupActivity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<MongoAppGroupUserVO> getGroupUserList() {
|
|
||||||
return groupUserList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupUserList(List<MongoAppGroupUserVO> groupUserList) {
|
|
||||||
this.groupUserList = groupUserList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMainImgUrl() {
|
|
||||||
return mainImgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMainImgUrl(String mainImgUrl) {
|
|
||||||
this.mainImgUrl = mainImgUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSpuName() {
|
|
||||||
return spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSpuName(String spuName) {
|
|
||||||
this.spuName = spuName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPriceFee() {
|
|
||||||
return priceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPriceFee(Long priceFee) {
|
|
||||||
this.priceFee = priceFee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AppGroupTeamVO getGroupTeam() {
|
|
||||||
return groupTeam;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeam(AppGroupTeamVO groupTeam) {
|
|
||||||
this.groupTeam = groupTeam;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSellingPoint() {
|
|
||||||
return sellingPoint;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSellingPoint(String sellingPoint) {
|
|
||||||
this.sellingPoint = sellingPoint;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AppGroupTeamInfoVO{" +
|
|
||||||
"groupTeam=" + groupTeam +
|
|
||||||
", groupActivity=" + groupActivity +
|
|
||||||
", groupUserList=" + groupUserList +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", spuName='" + spuName + '\'' +
|
|
||||||
", sellingPoint='" + sellingPoint + '\'' +
|
|
||||||
", spuMold=" + spuMold +
|
|
||||||
", isRefund=" + isRefund +
|
|
||||||
", mainImgUrl='" + mainImgUrl + '\'' +
|
|
||||||
", priceFee=" + priceFee +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.vo.app;
|
package com.tmerclub.cloud.group.vo.app;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -11,6 +13,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021/3/26
|
* @date 2021/3/26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AppGroupTeamVO implements Serializable {
|
public class AppGroupTeamVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -54,117 +58,5 @@ public class AppGroupTeamVO implements Serializable {
|
|||||||
@Schema(description = "团购活动商品id")
|
@Schema(description = "团购活动商品id")
|
||||||
private Long groupSpuId;
|
private Long groupSpuId;
|
||||||
|
|
||||||
public Long getGroupSpuId() {
|
|
||||||
return groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupSpuId(Long groupSpuId) {
|
|
||||||
this.groupSpuId = groupSpuId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getGroupNumber() {
|
|
||||||
return groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupNumber(Integer groupNumber) {
|
|
||||||
this.groupNumber = groupNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getJoinNum() {
|
|
||||||
return joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinNum(Integer joinNum) {
|
|
||||||
this.joinNum = joinNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getEndTime() {
|
|
||||||
return endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEndTime(Date endTime) {
|
|
||||||
this.endTime = endTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getNowTime() {
|
|
||||||
return nowTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNowTime(Date nowTime) {
|
|
||||||
this.nowTime = nowTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShareUserId() {
|
|
||||||
return shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareUserId(Long shareUserId) {
|
|
||||||
this.shareUserId = shareUserId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShareNickName() {
|
|
||||||
return shareNickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShareNickName(String shareNickName) {
|
|
||||||
this.shareNickName = shareNickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSharePic() {
|
|
||||||
return sharePic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSharePic(String sharePic) {
|
|
||||||
this.sharePic = sharePic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(String status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AppGroupTeamVO{" +
|
|
||||||
"groupTeamId=" + groupTeamId +
|
|
||||||
", groupNumber=" + groupNumber +
|
|
||||||
", joinNum=" + joinNum +
|
|
||||||
", endTime=" + endTime +
|
|
||||||
", nowTime=" + nowTime +
|
|
||||||
", shareUserId=" + shareUserId +
|
|
||||||
", shareNickName='" + shareNickName + '\'' +
|
|
||||||
", sharePic='" + sharePic + '\'' +
|
|
||||||
", status='" + status + '\'' +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", groupSpuId=" + groupSpuId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.group.vo.app;
|
package com.tmerclub.cloud.group.vo.app;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +12,8 @@ import java.io.Serializable;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
* @date 2021/3/26
|
* @date 2021/3/26
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class AppJoinGroupTeamVO implements Serializable {
|
public class AppJoinGroupTeamVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -21,27 +26,5 @@ public class AppJoinGroupTeamVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer prodCount;
|
private Integer prodCount;
|
||||||
|
|
||||||
public Long getJoinGroupTeamId() {
|
|
||||||
return joinGroupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setJoinGroupTeamId(Long joinGroupTeamId) {
|
|
||||||
this.joinGroupTeamId = joinGroupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getProdCount() {
|
|
||||||
return prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProdCount(Integer prodCount) {
|
|
||||||
this.prodCount = prodCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "AppJoinGroupTeamVO{" +
|
|
||||||
"joinGroupTeamId=" + joinGroupTeamId +
|
|
||||||
", prodCount=" + prodCount +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
package com.tmerclub.cloud.group.vo.mongo;
|
package com.tmerclub.cloud.group.vo.mongo;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -13,6 +15,8 @@ import java.util.Date;
|
|||||||
* @author YXF
|
* @author YXF
|
||||||
*/
|
*/
|
||||||
@Document("group_order")
|
@Document("group_order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoAppGroupUserVO implements Serializable {
|
public class MongoAppGroupUserVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -31,54 +35,4 @@ public class MongoAppGroupUserVO implements Serializable {
|
|||||||
@Schema(description = "创建时间")
|
@Schema(description = "创建时间")
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getNickName() {
|
|
||||||
return nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNickName(String nickName) {
|
|
||||||
this.nickName = nickName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPic() {
|
|
||||||
return pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPic(String pic) {
|
|
||||||
this.pic = pic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdentityType() {
|
|
||||||
return identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityType(Integer identityType) {
|
|
||||||
this.identityType = identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoAppGroupUserVO{" +
|
|
||||||
"userId='" + userId + '\'' +
|
|
||||||
", nickName='" + nickName + '\'' +
|
|
||||||
", pic='" + pic + '\'' +
|
|
||||||
", identityType=" + identityType +
|
|
||||||
", createTime=" + createTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
package com.tmerclub.cloud.group.vo.mongo;
|
package com.tmerclub.cloud.group.vo.mongo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
@Document("group_order")
|
@Document("group_order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoGroupOrderCountVO {
|
public class MongoGroupOrderCountVO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -13,18 +17,4 @@ public class MongoGroupOrderCountVO {
|
|||||||
*/
|
*/
|
||||||
private Integer count;
|
private Integer count;
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoGroupOrderCountVO{" +
|
|
||||||
"count=" + count +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.group.vo.mongo;
|
package com.tmerclub.cloud.group.vo.mongo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -10,6 +12,8 @@ import java.util.Date;
|
|||||||
* @author TRACK
|
* @author TRACK
|
||||||
*/
|
*/
|
||||||
@Document("group_order")
|
@Document("group_order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoGroupOrderVO {
|
public class MongoGroupOrderVO {
|
||||||
/**
|
/**
|
||||||
* 拼团订单id
|
* 拼团订单id
|
||||||
@ -76,108 +80,4 @@ public class MongoGroupOrderVO {
|
|||||||
*/
|
*/
|
||||||
private Integer count;
|
private Integer count;
|
||||||
|
|
||||||
public Long getGroupOrderId() {
|
|
||||||
return groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupOrderId(Long groupOrderId) {
|
|
||||||
this.groupOrderId = groupOrderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupTeamId() {
|
|
||||||
return groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupTeamId(Long groupTeamId) {
|
|
||||||
this.groupTeamId = groupTeamId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIdentityType() {
|
|
||||||
return identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIdentityType(Integer identityType) {
|
|
||||||
this.identityType = identityType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getActivityProdPrice() {
|
|
||||||
return activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setActivityProdPrice(Long activityProdPrice) {
|
|
||||||
this.activityProdPrice = activityProdPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getPayPrice() {
|
|
||||||
return payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPayPrice(Long payPrice) {
|
|
||||||
this.payPrice = payPrice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getGroupActivityId() {
|
|
||||||
return groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupActivityId(Long groupActivityId) {
|
|
||||||
this.groupActivityId = groupActivityId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getCount() {
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCount(Integer count) {
|
|
||||||
this.count = count;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoGroupOrderVO{" +
|
|
||||||
"groupOrderId=" + groupOrderId +
|
|
||||||
", groupActivityId=" + groupActivityId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
", groupTeamId=" + groupTeamId +
|
|
||||||
", userId='" + userId + '\'' +
|
|
||||||
", identityType=" + identityType +
|
|
||||||
", activityProdPrice=" + activityProdPrice +
|
|
||||||
", payPrice=" + payPrice +
|
|
||||||
", orderId=" + orderId +
|
|
||||||
", status=" + status +
|
|
||||||
", count=" + count +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
package com.tmerclub.cloud.group.vo.mongo;
|
package com.tmerclub.cloud.group.vo.mongo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
@ -9,6 +11,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
*/
|
*/
|
||||||
@Document("group_order")
|
@Document("group_order")
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class MongoSuccessGroupOrderVO implements Serializable {
|
public class MongoSuccessGroupOrderVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -17,36 +21,5 @@ public class MongoSuccessGroupOrderVO implements Serializable {
|
|||||||
private Long userId;
|
private Long userId;
|
||||||
private Long shopId;
|
private Long shopId;
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getOrderId() {
|
|
||||||
return orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOrderId(Long orderId) {
|
|
||||||
this.orderId = orderId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getUserId() {
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUserId(Long userId) {
|
|
||||||
this.userId = userId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "MongoSuccessGroupOrderVO{" +
|
|
||||||
"orderId=" + orderId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", shopId=" + shopId +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@ package com.tmerclub.cloud.im.dto;
|
|||||||
|
|
||||||
import com.tmerclub.cloud.common.vo.BaseVO;
|
import com.tmerclub.cloud.common.vo.BaseVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@ -13,6 +15,8 @@ import java.io.Serializable;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2023-03-23 17:43:40
|
* @date 2023-03-23 17:43:40
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
public class ImMsgBizSkillsDTO extends BaseVO implements Serializable {
|
public class ImMsgBizSkillsDTO extends BaseVO implements Serializable {
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -34,65 +38,5 @@ public class ImMsgBizSkillsDTO extends BaseVO implements Serializable {
|
|||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
public Long getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setId(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getShopId() {
|
|
||||||
return shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShopId(Long shopId) {
|
|
||||||
this.shopId = shopId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getKeywords() {
|
|
||||||
return keywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setKeywords(String keywords) {
|
|
||||||
this.keywords = keywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContent(String content) {
|
|
||||||
this.content = content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(Integer status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getRemark() {
|
|
||||||
return remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRemark(String remark) {
|
|
||||||
this.remark = remark;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "ImMsgBizSkillsVO{" +
|
|
||||||
"id=" + id +
|
|
||||||
",shopId=" + shopId +
|
|
||||||
",keywords=" + keywords +
|
|
||||||
",content=" + content +
|
|
||||||
",status=" + status +
|
|
||||||
",remark=" + remark +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",updateTime=" + updateTime +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user