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 tBRelatedUnitPriceInfoList) ; /** * 修改一对多 * */ public void updateMain(ClothingEntity entity, List tBRelatedUnitPriceInfoList); /** * 删除一对多 * */ public void delMain(ClothingEntity entity); }