old mode 100644
new mode 100755
| | |
| | | * |
| | | * @param postParameters |
| | | */ |
| | | public void addCommunity(JSONObject postParameters); |
| | | public void addCommunity(JSONObject postParameters) throws Exception; |
| | | |
| | | /** |
| | | * 编辑小区信息 |
| | |
| | | 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); |
| | | } |