| | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.dao.business.model.Goods; |
| | | import com.doumee.dao.business.model.dto.BatchDisableDTO; |
| | | import com.doumee.dao.business.model.dto.GoodCreatePlatRequest; |
| | | import com.doumee.dao.business.model.dto.GoodsRequest; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | * @return Integer |
| | | */ |
| | | Integer create(Goods goods); |
| | | |
| | | Integer companyCreate(Goods goods); |
| | | |
| | | /** |
| | | * 主键删除 |
| | |
| | | */ |
| | | void updateById(Goods goods); |
| | | |
| | | void companyUpdateById(Goods goods); |
| | | /** |
| | | * 批量主键更新 |
| | | * |
| | |
| | | void updateByIdInBatch(List<Goods> goodss); |
| | | |
| | | void updateDisableById(Goods goods); |
| | | |
| | | String batchUpdateDisableById(BatchDisableDTO batchDisableDTO); |
| | | |
| | | /** |
| | | * 主键查询 |
| | |
| | | long count(Goods goods); |
| | | |
| | | Integer importBatch(MultipartFile file); |
| | | Integer importBatchImg(MultipartFile file); |
| | | |
| | | String h5Image(); |
| | | |
| | |
| | | List<Goods> findListForH5(GoodsRequest goodsRequest); |
| | | |
| | | Integer createPlat(GoodCreatePlatRequest param); |
| | | |
| | | void openSyncSwitch(); |
| | | |
| | | } |