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) {
|
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||||
return toAjax(sxCustomerService.deleteSxCustomerByIds(ids));
|
return toAjax(sxCustomerService.deleteSxCustomerByIds(ids));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -57,4 +57,4 @@ public class SxCustomer extends BaseEntity {
|
|||||||
.append("remark", getRemark())
|
.append("remark", getRemark())
|
||||||
.toString();
|
.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -46,4 +46,4 @@ public class SxCustomerExport {
|
|||||||
public void setRemark(String remark) {
|
public void setRemark(String remark) {
|
||||||
this.remark = remark;
|
this.remark = remark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -59,3 +59,4 @@ public interface SxCustomerMapper
|
|||||||
*/
|
*/
|
||||||
public int deleteSxCustomerByIds(Long[] ids);
|
public int deleteSxCustomerByIds(Long[] ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -76,4 +76,4 @@
|
|||||||
#{id}
|
#{id}
|
||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user