ClothingServiceI.java 930 B

123456789101112131415161718192021222324252627282930313233
  1. package cn.com.lzt.clothing.base.service;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. import org.jeecgframework.core.common.service.CommonService;
  5. import cn.com.lzt.clothing.base.entity.ClothingEntity;
  6. import cn.com.lzt.clothing.base.entity.TBClothingRelatedUnitPriceEntity;
  7. public interface ClothingServiceI extends CommonService{
  8. // public void delete(ClothingEntity entity) throws Exception;
  9. //
  10. // public Serializable save(ClothingEntity entity) throws Exception;
  11. //
  12. // public void saveOrUpdate(ClothingEntity entity) throws Exception;
  13. public void addMain(ClothingEntity entity,
  14. List<TBClothingRelatedUnitPriceEntity> tBRelatedUnitPriceInfoList) ;
  15. /**
  16. * 修改一对多
  17. *
  18. */
  19. public void updateMain(ClothingEntity entity,
  20. List<TBClothingRelatedUnitPriceEntity> tBRelatedUnitPriceInfoList);
  21. /**
  22. * 删除一对多
  23. *
  24. */
  25. public void delMain(ClothingEntity entity);
  26. }