| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*******************************************************************************
- * Copyright(c) 2024 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:
- * 2.功能描述:公共查询方法
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 周兴 2024-1-19 1.00 新建
- *******************************************************************************/
- module.exports = {
- baseService: {
- // 新建
- insert:'insert',
- // 编辑
- update:'update',
- // 删除
- delete:'delete',
- // 停用
- disable:'disable',
- // 启用
- enable:'enable',
- // 批量新建
- insertBatch:'insert_batch',
- // 批量更新
- updateBatch:'update_batch',
- // 批量删除
- deleteBatch:'delete_batch',
- // 批量停用
- disableBatch:'disable_batch',
- // 批量启用
- enableBatch:'enable_batch',
- // 条件查询
- selectByCond:'list_by',
- // 预警信息查询
- warningSelectByCound: 'warning_list_by',
- // 根据条件查数量
- countByCond:'count_by',
- // 条件查询-通过id
- selectById:'{id}',
- }
- };
|