商品查询修改

This commit is contained in:
wangguocheng
2024-05-17 10:48:36 +08:00
parent 168d9c8a43
commit 09e9b172ee
6 changed files with 1144 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.OrderChildDetail;
public interface OrderChildDetailMapper {
int deleteByPrimaryKey(Integer id);
int insert(OrderChildDetail record);
int insertSelective(OrderChildDetail record);
OrderChildDetail selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(OrderChildDetail record);
int updateByPrimaryKey(OrderChildDetail record);
}

View File

@@ -0,0 +1,17 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.OrderChildInfo;
public interface OrderChildInfoMapper {
int deleteByPrimaryKey(Integer id);
int insert(OrderChildInfo record);
int insertSelective(OrderChildInfo record);
OrderChildInfo selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(OrderChildInfo record);
int updateByPrimaryKey(OrderChildInfo record);
}