|
|
@@ -1,5 +1,75 @@
|
|
|
package com.goafanti.order.bo;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class OutSignStatistics {
|
|
|
|
|
|
+ private String id;
|
|
|
+ private String name;
|
|
|
+ private Integer counts;
|
|
|
+ private BigDecimal totalAmount;
|
|
|
+ private Integer newSignNumber;
|
|
|
+ private Integer repeatSignNumber;
|
|
|
+ private Integer channelSignNumber;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCounts() {
|
|
|
+ if (counts == null) return 0;
|
|
|
+ return counts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCounts(Integer counts) {
|
|
|
+ this.counts = counts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTotalAmount() {
|
|
|
+ if (totalAmount == null) return new BigDecimal(0);
|
|
|
+ return totalAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalAmount(BigDecimal totalAmount) {
|
|
|
+ this.totalAmount = totalAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getNewSignNumber() {
|
|
|
+ if (newSignNumber == null) return 0;
|
|
|
+ return newSignNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNewSignNumber(Integer newSignNumber) {
|
|
|
+ this.newSignNumber = newSignNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRepeatSignNumber() {
|
|
|
+ if (repeatSignNumber == null) return 0;
|
|
|
+ return repeatSignNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRepeatSignNumber(Integer repeatSignNumber) {
|
|
|
+ this.repeatSignNumber = repeatSignNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getChannelSignNumber() {
|
|
|
+ if (channelSignNumber == null) return 0;
|
|
|
+ return channelSignNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChannelSignNumber(Integer channelSignNumber) {
|
|
|
+ this.channelSignNumber = channelSignNumber;
|
|
|
+ }
|
|
|
}
|