|
@@ -1,5 +1,8 @@
|
|
|
package com.iamberry.rst.core.dm;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
@@ -45,8 +48,22 @@ public class DmDealer implements Serializable{
|
|
|
private Date coopAgreeBeforeDate;
|
|
|
//合同结束日期
|
|
|
private Date coopAgreeEndDate;
|
|
|
+ //店铺id
|
|
|
+ private Integer storeId;
|
|
|
//店铺名称
|
|
|
private String storeName;
|
|
|
+ //渠道名称
|
|
|
+ private String dealChannelName;
|
|
|
+ //订单总额
|
|
|
+ private Integer itemTotal;
|
|
|
+ //已认领金额
|
|
|
+ private Integer claimOrderTotal;
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
|
|
|
+ private Date startDate; //开始时间
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
|
|
|
+ private Date endDate; //结束时间
|
|
|
|
|
|
//对接人
|
|
|
private List<DealerContact> dealerContactList = new ArrayList<>();
|
|
@@ -224,4 +241,44 @@ public class DmDealer implements Serializable{
|
|
|
public void setStoreName(String storeName) {
|
|
|
this.storeName = storeName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getDealChannelName() {
|
|
|
+ return dealChannelName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDealChannelName(String dealChannelName) {
|
|
|
+ this.dealChannelName = dealChannelName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getItemTotal() {
|
|
|
+ return itemTotal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemTotal(Integer itemTotal) {
|
|
|
+ this.itemTotal = itemTotal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getClaimOrderTotal() {
|
|
|
+ return claimOrderTotal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClaimOrderTotal(Integer claimOrderTotal) {
|
|
|
+ this.claimOrderTotal = claimOrderTotal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getStartDate() {
|
|
|
+ return startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartDate(Date startDate) {
|
|
|
+ this.startDate = startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getEndDate() {
|
|
|
+ return endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndDate(Date endDate) {
|
|
|
+ this.endDate = endDate;
|
|
|
+ }
|
|
|
}
|