|
|
@@ -3,6 +3,7 @@ package com.goafanti.weChat.bo;
|
|
|
import com.goafanti.common.model.PublicExamine;
|
|
|
import com.goafanti.common.model.PublicRelease;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.List;
|
|
|
|
|
|
public class OutPublicRelease extends PublicRelease {
|
|
|
@@ -53,6 +54,33 @@ public class OutPublicRelease extends PublicRelease {
|
|
|
*/
|
|
|
private Integer ViewPermission;
|
|
|
|
|
|
+ private BigDecimal maxDuration;
|
|
|
+ private Integer maxProcess;
|
|
|
+ private Integer maxType;
|
|
|
+
|
|
|
+ public BigDecimal getMaxDuration() {
|
|
|
+ return maxDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxDuration(BigDecimal maxDuration) {
|
|
|
+ this.maxDuration = maxDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxProcess() {
|
|
|
+ return maxProcess;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxProcess(Integer maxProcess) {
|
|
|
+ this.maxProcess = maxProcess;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxType() {
|
|
|
+ return maxType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxType(Integer maxType) {
|
|
|
+ this.maxType = maxType;
|
|
|
+ }
|
|
|
|
|
|
public Integer getViewPermission() {
|
|
|
return ViewPermission;
|