|
@@ -6,6 +6,7 @@ import java.math.BigDecimal;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.ruixuan.common.annotation.Excel;
|
|
|
import com.ruixuan.common.core.domain.BaseEntity;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import org.springframework.data.annotation.Transient;
|
|
@@ -17,6 +18,7 @@ import org.springframework.data.annotation.Transient;
|
|
|
* @author ruoyi
|
|
|
* @date 2024-10-31
|
|
|
*/
|
|
|
+@Data
|
|
|
public class KuaishouRewardBaseInfo extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@@ -105,148 +107,10 @@ public class KuaishouRewardBaseInfo extends BaseEntity {
|
|
|
@Transient
|
|
|
private String itemCreateName;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getItemId() {
|
|
|
- return itemId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setItemId(Long itemId) {
|
|
|
- this.itemId = itemId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getItemTitle() {
|
|
|
- return itemTitle;
|
|
|
- }
|
|
|
-
|
|
|
- public void setItemTitle(String itemTitle) {
|
|
|
- this.itemTitle = itemTitle;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPromoterId() {
|
|
|
- return promoterId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPromoterId(String promoterId) {
|
|
|
- this.promoterId = promoterId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPromoterName() {
|
|
|
- return promoterName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPromoterName(String promoterName) {
|
|
|
- this.promoterName = promoterName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStatDate() {
|
|
|
- return statDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatDate(String statDate) {
|
|
|
- this.statDate = statDate;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCurrentSettlementNum() {
|
|
|
- return currentSettlementNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCurrentSettlementNum(Long currentSettlementNum) {
|
|
|
- this.currentSettlementNum = currentSettlementNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getTotalSettlementNum() {
|
|
|
- return totalSettlementNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTotalSettlementNum(Long totalSettlementNum) {
|
|
|
- this.totalSettlementNum = totalSettlementNum;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getSettlementPrice() {
|
|
|
- return settlementPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSettlementPrice(BigDecimal settlementPrice) {
|
|
|
- this.settlementPrice = settlementPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getAnchorAmount() {
|
|
|
- return anchorAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAnchorAmount(BigDecimal anchorAmount) {
|
|
|
- this.anchorAmount = anchorAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getReferenceAmount() {
|
|
|
- return referenceAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReferenceAmount(BigDecimal referenceAmount) {
|
|
|
- this.referenceAmount = referenceAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getTotalAmount() {
|
|
|
- return totalAmount;
|
|
|
- }
|
|
|
+ public KuaishouRewardBaseInfo() {
|
|
|
|
|
|
- public void setTotalAmount(BigDecimal totalAmount) {
|
|
|
- this.totalAmount = totalAmount;
|
|
|
}
|
|
|
|
|
|
- public String getRemarks() {
|
|
|
- return remarks;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemarks(String remarks) {
|
|
|
- this.remarks = remarks;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPromoterCreateName() {
|
|
|
- return promoterCreateName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPromoterCreateName(String promoterCreateName) {
|
|
|
- this.promoterCreateName = promoterCreateName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getItemCreateName() {
|
|
|
- return itemCreateName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setItemCreateName(String itemCreateName) {
|
|
|
- this.itemCreateName = itemCreateName;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "KuaishouRewardBaseInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", itemId=" + itemId +
|
|
|
- ", itemTitle='" + itemTitle + '\'' +
|
|
|
- ", promoterId='" + promoterId + '\'' +
|
|
|
- ", promoterName='" + promoterName + '\'' +
|
|
|
- ", statDate='" + statDate + '\'' +
|
|
|
- ", currentSettlementNum=" + currentSettlementNum +
|
|
|
- ", totalSettlementNum=" + totalSettlementNum +
|
|
|
- ", settlementPrice=" + settlementPrice +
|
|
|
- ", anchorAmount=" + anchorAmount +
|
|
|
- ", referenceAmount=" + referenceAmount +
|
|
|
- ", totalAmount=" + totalAmount +
|
|
|
- ", remarks='" + remarks + '\'' +
|
|
|
- ", promoterCreateName='" + promoterCreateName + '\'' +
|
|
|
- ", itemCreateName='" + itemCreateName + '\'' +
|
|
|
- '}';
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
public KuaishouRewardBaseInfo(JSONObject obj) {
|
|
|
this.setPromoterId(obj.getString("0"));//达人ID
|
|
|
this.setPromoterName(obj.getString("1"));//达人昵称
|