Merge remote-tracking branch 'origin/main'

This commit is contained in:
漂泊 2025-10-05 17:02:32 +08:00
commit f331f35a5c
7 changed files with 7 additions and 6 deletions

View File

@ -82,4 +82,4 @@ public class SxCustomerController extends BaseController {
public AjaxResult remove(@PathVariable Long[] ids) { public AjaxResult remove(@PathVariable Long[] ids) {
return toAjax(sxCustomerService.deleteSxCustomerByIds(ids)); return toAjax(sxCustomerService.deleteSxCustomerByIds(ids));
} }
} }

View File

@ -57,4 +57,4 @@ public class SxCustomer extends BaseEntity {
.append("remark", getRemark()) .append("remark", getRemark())
.toString(); .toString();
} }
} }

View File

@ -46,4 +46,4 @@ public class SxCustomerExport {
public void setRemark(String remark) { public void setRemark(String remark) {
this.remark = remark; this.remark = remark;
} }
} }

View File

@ -59,3 +59,4 @@ public interface SxCustomerMapper
*/ */
public int deleteSxCustomerByIds(Long[] ids); public int deleteSxCustomerByIds(Long[] ids);
} }

View File

@ -10,4 +10,4 @@ public interface ISxCustomerService {
int updateSxCustomer(SxCustomer sxCustomer); int updateSxCustomer(SxCustomer sxCustomer);
int deleteSxCustomerByIds(Long[] ids); int deleteSxCustomerByIds(Long[] ids);
int deleteSxCustomerById(Long id); int deleteSxCustomerById(Long id);
} }

View File

@ -41,4 +41,4 @@ public class SxCustomerServiceImpl implements ISxCustomerService {
public int deleteSxCustomerById(Long id) { public int deleteSxCustomerById(Long id) {
return sxCustomerMapper.deleteSxCustomerById(id); return sxCustomerMapper.deleteSxCustomerById(id);
} }
} }

View File

@ -76,4 +76,4 @@
#{id} #{id}
</foreach> </foreach>
</delete> </delete>
</mapper> </mapper>