inv_user_product,inv_user_product_detail表初始化代码提交
parent
92e2a0fe89
commit
cc736af286
@ -0,0 +1,24 @@
|
|||||||
|
package com.glxp.api.service.inv;
|
||||||
|
|
||||||
|
|
||||||
|
import com.glxp.api.entity.inv.InvUserProductDetailEntity;
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Lenovo
|
||||||
|
* @description 针对表【inv_user_product_detail(用户库存详情表)】的数据库操作Service
|
||||||
|
* @createDate 2023-05-12 10:19:43
|
||||||
|
*/
|
||||||
|
public interface InvUserProductDetailService{
|
||||||
|
|
||||||
|
List<InvUserProductDetailEntity> filterInvUserProductDetailList(InvUserProductDetailEntity invUserProductDetailEntity);
|
||||||
|
|
||||||
|
Boolean addInvUserProductDetail(InvUserProductDetailEntity invUserProductDetailEntity);
|
||||||
|
|
||||||
|
Boolean updateInvUserProductDetail(InvUserProductDetailEntity invUserProductDetailEntity);
|
||||||
|
|
||||||
|
Boolean delectInvUserProductDetail(InvUserProductDetailEntity invUserProductDetailEntity);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package com.glxp.api.service.inv;
|
||||||
|
|
||||||
|
|
||||||
|
import com.glxp.api.common.res.BaseResponse;
|
||||||
|
import com.glxp.api.entity.inv.InvUserProductEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Lenovo
|
||||||
|
* @description 针对表【inv_user_product(用户库存表)】的数据库操作Service
|
||||||
|
* @createDate 2023-05-12 10:19:43
|
||||||
|
*/
|
||||||
|
public interface InvUserProductService{
|
||||||
|
|
||||||
|
List<InvUserProductEntity> filterInvUserProductList(InvUserProductEntity invUserProductEntity);
|
||||||
|
|
||||||
|
Boolean addInvUserProduct(InvUserProductEntity invUserProductEntity);
|
||||||
|
|
||||||
|
Boolean updateInvUserProduct(InvUserProductEntity invUserProductEntity);
|
||||||
|
|
||||||
|
Boolean delectInvUserProduct(InvUserProductEntity invUserProductEntity);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue