|
@@ -7,6 +7,7 @@ import com.rongwei.bsentity.vo.SaveReportReq;
|
|
import com.rongwei.bsentity.vo.SmallRollStartReportReq;
|
|
import com.rongwei.bsentity.vo.SmallRollStartReportReq;
|
|
import com.rongwei.bsentity.vo.StartRePortReq;
|
|
import com.rongwei.bsentity.vo.StartRePortReq;
|
|
import com.rongwei.rwcommon.base.R;
|
|
import com.rongwei.rwcommon.base.R;
|
|
|
|
+import com.rongwei.rwcommon.vo.generalsql.MasterSlaveUpdateVo;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -79,5 +80,13 @@ public class ApsReportRecordController {
|
|
log.info("小卷开工;参数为:{}", req);
|
|
log.info("小卷开工;参数为:{}", req);
|
|
return apsReportRecordsService.smallRollStartReport(req);
|
|
return apsReportRecordsService.smallRollStartReport(req);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 作业报工 修改
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/generalMsUpdate")
|
|
|
|
+ public R generalMsUpdate(@RequestBody MasterSlaveUpdateVo masterSlaveUpdate) {
|
|
|
|
+ return apsReportRecordsService.generalMsUpdate(masterSlaveUpdate);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|