|
@@ -0,0 +1,65 @@
|
|
|
+package com.qmth.sop.business.bean.result;
|
|
|
+
|
|
|
+import com.qmth.sop.business.entity.TBProjectExchange;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 质量问题反馈view result
|
|
|
+ * @Param:
|
|
|
+ * @return:
|
|
|
+ * @Author: wangliang
|
|
|
+ * @Date: 2023/2/17
|
|
|
+ */
|
|
|
+public class TBQualityProblemViewResult implements Serializable {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "crm信息")
|
|
|
+ CrmProjectResult crmInfo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "项目变更计划信息")
|
|
|
+ TBProjectExchange tbProjectExchange;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "流程审批信息")
|
|
|
+ List<TFFlowViewLogResult> flowApproveHistoryList;
|
|
|
+
|
|
|
+ public TBQualityProblemViewResult() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public TBQualityProblemViewResult(CrmProjectResult crmInfo, TBProjectExchange tbProjectExchange) {
|
|
|
+ this.crmInfo = crmInfo;
|
|
|
+ this.tbProjectExchange = tbProjectExchange;
|
|
|
+ }
|
|
|
+
|
|
|
+ public TBQualityProblemViewResult(CrmProjectResult crmInfo, TBProjectExchange tbProjectExchange, List<TFFlowViewLogResult> flowApproveHistoryList) {
|
|
|
+ this.crmInfo = crmInfo;
|
|
|
+ this.tbProjectExchange = tbProjectExchange;
|
|
|
+ this.flowApproveHistoryList = flowApproveHistoryList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<TFFlowViewLogResult> getFlowApproveHistoryList() {
|
|
|
+ return flowApproveHistoryList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowApproveHistoryList(List<TFFlowViewLogResult> flowApproveHistoryList) {
|
|
|
+ this.flowApproveHistoryList = flowApproveHistoryList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CrmProjectResult getCrmInfo() {
|
|
|
+ return crmInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCrmInfo(CrmProjectResult crmInfo) {
|
|
|
+ this.crmInfo = crmInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public TBProjectExchange getTbProjectExchange() {
|
|
|
+ return tbProjectExchange;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTbProjectExchange(TBProjectExchange tbProjectExchange) {
|
|
|
+ this.tbProjectExchange = tbProjectExchange;
|
|
|
+ }
|
|
|
+}
|