| 123456789101112131415161718192021222324252627282930313233 |
- package cn.com.lzt.clothing.base.service;
- import java.io.Serializable;
- import java.util.List;
- import org.jeecgframework.core.common.service.CommonService;
- import cn.com.lzt.clothing.base.entity.ClothingEntity;
- import cn.com.lzt.clothing.base.entity.TBClothingRelatedUnitPriceEntity;
- public interface ClothingServiceI extends CommonService{
-
- // public void delete(ClothingEntity entity) throws Exception;
- //
- // public Serializable save(ClothingEntity entity) throws Exception;
- //
- // public void saveOrUpdate(ClothingEntity entity) throws Exception;
-
- public void addMain(ClothingEntity entity,
- List<TBClothingRelatedUnitPriceEntity> tBRelatedUnitPriceInfoList) ;
- /**
- * 修改一对多
- *
- */
- public void updateMain(ClothingEntity entity,
- List<TBClothingRelatedUnitPriceEntity> tBRelatedUnitPriceInfoList);
-
- /**
- * 删除一对多
- *
- */
- public void delMain(ClothingEntity entity);
-
- }
|