mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
update 根据pileSn查询计费模板
This commit is contained in:
@@ -23,7 +23,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param id 计费模板主键
|
||||
* @return 计费模板
|
||||
*/
|
||||
public PileBillingTemplate selectPileBillingTemplateById(Long id);
|
||||
PileBillingTemplate selectPileBillingTemplateById(Long id);
|
||||
|
||||
/**
|
||||
* 查询计费模板列表
|
||||
@@ -31,7 +31,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param pileBillingTemplate 计费模板
|
||||
* @return 计费模板集合
|
||||
*/
|
||||
public List<PileBillingTemplate> selectPileBillingTemplateList(PileBillingTemplate pileBillingTemplate);
|
||||
List<PileBillingTemplate> selectPileBillingTemplateList(PileBillingTemplate pileBillingTemplate);
|
||||
|
||||
/**
|
||||
* 新增计费模板
|
||||
@@ -39,7 +39,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param pileBillingTemplate 计费模板
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertPileBillingTemplate(PileBillingTemplate pileBillingTemplate);
|
||||
int insertPileBillingTemplate(PileBillingTemplate pileBillingTemplate);
|
||||
|
||||
/**
|
||||
* 修改计费模板
|
||||
@@ -47,7 +47,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param pileBillingTemplate 计费模板
|
||||
* @return 结果
|
||||
*/
|
||||
public int updatePileBillingTemplate(PileBillingTemplate pileBillingTemplate);
|
||||
int updatePileBillingTemplate(PileBillingTemplate pileBillingTemplate);
|
||||
|
||||
/**
|
||||
* 删除计费模板
|
||||
@@ -55,7 +55,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param id 计费模板主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileBillingTemplateById(Long id);
|
||||
int deletePileBillingTemplateById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除计费模板
|
||||
@@ -63,7 +63,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileBillingTemplateByIds(Long[] ids);
|
||||
int deletePileBillingTemplateByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 批量删除计费模板详情
|
||||
@@ -71,7 +71,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param templateCodes 需要删除的templateCode集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileBillingDetailByTemplateCodes(@Param("templateCodes") List<String> templateCodes);
|
||||
int deletePileBillingDetailByTemplateCodes(@Param("templateCodes") List<String> templateCodes);
|
||||
|
||||
/**
|
||||
* 批量新增计费模板详情
|
||||
@@ -79,7 +79,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param pileBillingDetailList 计费模板详情列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchPileBillingDetail(List<PileBillingDetail> pileBillingDetailList);
|
||||
int batchPileBillingDetail(List<PileBillingDetail> pileBillingDetailList);
|
||||
|
||||
|
||||
/**
|
||||
@@ -88,7 +88,7 @@ public interface PileBillingTemplateMapper {
|
||||
* @param templateCode 计费模板code
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileBillingDetailByTemplateCode(String templateCode);
|
||||
int deletePileBillingDetailByTemplateCode(String templateCode);
|
||||
|
||||
/**
|
||||
* 查询公共计费模板列表
|
||||
|
||||
Reference in New Issue
Block a user