Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
f331f35a5c
@ -82,4 +82,4 @@ public class SxCustomerController extends BaseController {
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(sxCustomerService.deleteSxCustomerByIds(ids));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -57,4 +57,4 @@ public class SxCustomer extends BaseEntity {
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -46,4 +46,4 @@ public class SxCustomerExport {
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,3 +59,4 @@ public interface SxCustomerMapper
|
||||
*/
|
||||
public int deleteSxCustomerByIds(Long[] ids);
|
||||
}
|
||||
|
||||
|
||||
@ -10,4 +10,4 @@ public interface ISxCustomerService {
|
||||
int updateSxCustomer(SxCustomer sxCustomer);
|
||||
int deleteSxCustomerByIds(Long[] ids);
|
||||
int deleteSxCustomerById(Long id);
|
||||
}
|
||||
}
|
||||
|
||||
@ -41,4 +41,4 @@ public class SxCustomerServiceImpl implements ISxCustomerService {
|
||||
public int deleteSxCustomerById(Long id) {
|
||||
return sxCustomerMapper.deleteSxCustomerById(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -76,4 +76,4 @@
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
</mapper>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user