titemgroupDataBean.java 481 B

123456789101112131415161718192021
  1. package titemgroup;
  2. import baseclass.DataBeanCust;
  3. import p2.util.P2Exception;
  4. public class titemgroupDataBean extends DataBeanCust {
  5. @Override
  6. public int TOGGLEDELETEROW() throws P2Exception {
  7. super.TOGGLEDELETEROW();
  8. titemgroup titemgroup = (titemgroup) parent.getPao();
  9. titemgroup.reflashSaleclsnum();
  10. parent.save();
  11. byrefresh();
  12. return 1;
  13. }
  14. public int ADDROWS() throws P2Exception {
  15. return 2;
  16. }
  17. }