|
@@ -5,6 +5,7 @@ import com.songhua.common.core.domain.BaseEntity;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -43,7 +44,7 @@ public class ShhTicketRules extends BaseEntity {
|
|
|
/**
|
|
|
* 金额
|
|
|
*/
|
|
|
- private Integer ticketMoney;
|
|
|
+ private BigDecimal ticketMoney;
|
|
|
|
|
|
/**
|
|
|
* 票种集合
|
|
@@ -74,11 +75,11 @@ public class ShhTicketRules extends BaseEntity {
|
|
|
return ticketName;
|
|
|
}
|
|
|
|
|
|
- public Integer getTicketMoney() {
|
|
|
+ public BigDecimal getTicketMoney() {
|
|
|
return ticketMoney;
|
|
|
}
|
|
|
|
|
|
- public void setTicketMoney(Integer ticketMoney) {
|
|
|
+ public void setTicketMoney(BigDecimal ticketMoney) {
|
|
|
this.ticketMoney = ticketMoney;
|
|
|
}
|
|
|
|