old mode 100644
new mode 100755
| | |
| | | package com.java110.job.adapt.hcIot.asyn; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import org.springframework.util.MultiValueMap; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | public void addCommunity(JSONObject postParameters); |
| | | public void addCommunity(JSONObject postParameters) throws Exception; |
| | | |
| | | /** |
| | | * 编辑小区信息 |
| | |
| | | */ |
| | | void updateMachine(JSONObject postParameters); |
| | | |
| | | void deleteSend(JSONObject postParameters); |
| | | void deleteMachine(JSONObject postParameters); |
| | | |
| | | public void addOwner(JSONObject postParameters); |
| | | |
| | |
| | | * @param postParameters |
| | | */ |
| | | void sendDeleteOwner(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 重新同步 |
| | | * |
| | | * @param reqJson |
| | | */ |
| | | void reSendIot(JSONObject reqJson); |
| | | |
| | | /** |
| | | * 添加 停车场 |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | void addParkingArea(JSONObject postParameters); |
| | | |
| | | void updateParkingArea(JSONObject postParameters); |
| | | |
| | | void deleteParkingArea(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 添加 车辆 |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | void addOwnerCar(JSONObject postParameters); |
| | | |
| | | void updateOwnerCar(JSONObject postParameters); |
| | | |
| | | void deleteOwnerCar(JSONObject postParameters); |
| | | |
| | | void addCarBlackWhite(JSONObject postParameters); |
| | | |
| | | void deleteCarBlackWhite(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 同步临时车费用 |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | void addTempCarFeeConfig(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 同步临时车费用 |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | void updateTempCarFeeConfig(JSONObject postParameters); |
| | | |
| | | void deleteTempCarFeeConfig(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 考勤班组同步 |
| | | * @param postParameters |
| | | * @param staffs |
| | | */ |
| | | void addAttendance(JSONObject postParameters, List<JSONObject> staffs); |
| | | |
| | | /** |
| | | * 考勤员工同步 |
| | | * @param postParameters |
| | | * @param staffs |
| | | */ |
| | | void addAttendanceStaff(JSONObject postParameters, List<JSONObject> staffs); |
| | | |
| | | /** |
| | | * 编辑考勤 同步 |
| | | * @param postParameters |
| | | */ |
| | | void updateAttendance(JSONObject postParameters); |
| | | |
| | | /** |
| | | * 删除考勤 同步 |
| | | * @param postParameters |
| | | */ |
| | | void deleteAttendance(JSONObject postParameters); |
| | | |
| | | void deleteAttendanceStaff(JSONObject postParameters); |
| | | } |