企业端缺失功能补全
parent
2521ccf737
commit
cfc13f4ae0
|
@ -761,4 +761,23 @@ public class OutSourcedController extends BaseController {
|
|||
return map;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 批量删除
|
||||
*
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "/updateState")
|
||||
@ResponseBody
|
||||
public Object updateState() throws Exception {
|
||||
Map<String, Object> map = new HashMap<String, Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
outsourcedService.updateState(pd);
|
||||
map.put("result", errInfo); //返回结果
|
||||
return map;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -73,5 +73,7 @@ public interface OutSourcedMapper{
|
|||
|
||||
//校验结束重点工程是否有为完成的内容
|
||||
PageData jieshuOutSourced(PageData pd);
|
||||
|
||||
void updateState(PageData pd);
|
||||
}
|
||||
|
||||
|
|
|
@ -74,5 +74,7 @@ public interface OutSourcedService{
|
|||
|
||||
//校验结束重点工程是否有为完成的内容
|
||||
PageData jieshuOutSourced(PageData pd);
|
||||
|
||||
void updateState(PageData pd);
|
||||
}
|
||||
|
||||
|
|
|
@ -4,10 +4,12 @@ import com.zcloud.entity.Page;
|
|||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.mapper.dsno2.keyProjects.OutSourcedMapper;
|
||||
import com.zcloud.service.keyProjects.OutSourcedService;
|
||||
import com.zcloud.util.DateUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
@ -98,5 +100,11 @@ public class OutSourcedServiceImpl implements OutSourcedService {
|
|||
public PageData jieshuOutSourced(PageData pd) {
|
||||
return outsourcedMapper.jieshuOutSourced(pd);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateState(PageData pd) {
|
||||
pd.put("OPERATTIME", DateUtil.date2Str(new Date()));
|
||||
outsourcedMapper.updateState(pd);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -683,4 +683,16 @@
|
|||
) AI ON AI.OUTSOURCED_ID = o.OUTSOURCED_ID
|
||||
WHERE o.OUTSOURCED_ID=#{OUTSOURCED_ID}
|
||||
</select>
|
||||
|
||||
|
||||
<update id="updateState" parameterType="pd">
|
||||
update
|
||||
<include refid="tableName"></include>
|
||||
set
|
||||
STATE = #{STATE},
|
||||
OPERATOR = #{OPERATOR},
|
||||
OPERATTIME = #{OPERATTIME}
|
||||
where
|
||||
OUTSOURCED_ID = #{OUTSOURCED_ID}
|
||||
</update>
|
||||
</mapper>
|
||||
|
|
Loading…
Reference in New Issue