|
|
@@ -20,17 +20,17 @@ public class OutselectProjectSotp {
|
|
|
private BigDecimal commodityPrice;
|
|
|
private String reason;
|
|
|
private String annexUrl;
|
|
|
- private Integer sotpType;
|
|
|
+ private Integer stopType;
|
|
|
|
|
|
/**
|
|
|
* 审核状态 0=发起,1=通过,2=拒绝
|
|
|
*/
|
|
|
- private Integer sotpStatus;
|
|
|
+ private Integer stopStatus;
|
|
|
private Integer tid;
|
|
|
/**
|
|
|
* 项目暂停状态 0否 1已发起
|
|
|
*/
|
|
|
- private Integer projectSotpStatus;
|
|
|
+ private Integer projectStopStatus;
|
|
|
|
|
|
public Integer getTid() {
|
|
|
return tid;
|
|
|
@@ -40,13 +40,7 @@ public class OutselectProjectSotp {
|
|
|
this.tid = tid;
|
|
|
}
|
|
|
|
|
|
- public Integer getProjectSotpStatus() {
|
|
|
- return projectSotpStatus;
|
|
|
- }
|
|
|
|
|
|
- public void setProjectSotpStatus(Integer projectSotpStatus) {
|
|
|
- this.projectSotpStatus = projectSotpStatus;
|
|
|
- }
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
@@ -64,20 +58,28 @@ public class OutselectProjectSotp {
|
|
|
this.annexUrl = annexUrl;
|
|
|
}
|
|
|
|
|
|
- public Integer getSotpStatus() {
|
|
|
- return sotpStatus;
|
|
|
+ public Integer getStopType() {
|
|
|
+ return stopType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStopType(Integer stopType) {
|
|
|
+ this.stopType = stopType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStopStatus() {
|
|
|
+ return stopStatus;
|
|
|
}
|
|
|
|
|
|
- public void setSotpStatus(Integer sotpStatus) {
|
|
|
- this.sotpStatus = sotpStatus;
|
|
|
+ public void setStopStatus(Integer stopStatus) {
|
|
|
+ this.stopStatus = stopStatus;
|
|
|
}
|
|
|
|
|
|
- public Integer getSotpType() {
|
|
|
- return sotpType;
|
|
|
+ public Integer getProjectStopStatus() {
|
|
|
+ return projectStopStatus;
|
|
|
}
|
|
|
|
|
|
- public void setSotpType(Integer sotpType) {
|
|
|
- this.sotpType = sotpType;
|
|
|
+ public void setProjectStopStatus(Integer projectStopStatus) {
|
|
|
+ this.projectStopStatus = projectStopStatus;
|
|
|
}
|
|
|
|
|
|
public String getCreateTimes() {
|