1.提交设备领用养护记录查询接口
parent
5305354837
commit
3a8288df0b
@ -0,0 +1,17 @@
|
||||
package com.glxp.api.admin.dao.inventory;
|
||||
|
||||
import com.glxp.api.admin.entity.inventory.DeviceCollectOrderEntity;
|
||||
|
||||
public interface DeviceCollectOrderDao {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(DeviceCollectOrderEntity record);
|
||||
|
||||
int insertSelective(DeviceCollectOrderEntity record);
|
||||
|
||||
DeviceCollectOrderEntity selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(DeviceCollectOrderEntity record);
|
||||
|
||||
int updateByPrimaryKey(DeviceCollectOrderEntity record);
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.glxp.api.admin.dao.inventory;
|
||||
|
||||
import com.glxp.api.admin.entity.inventory.DeviceCollectOrderDetailEntity;
|
||||
|
||||
public interface DeviceCollectOrderDetailDao {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(DeviceCollectOrderDetailEntity record);
|
||||
|
||||
int insertSelective(DeviceCollectOrderDetailEntity record);
|
||||
|
||||
DeviceCollectOrderDetailEntity selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(DeviceCollectOrderDetailEntity record);
|
||||
|
||||
int updateByPrimaryKey(DeviceCollectOrderDetailEntity record);
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.glxp.api.admin.dao.inventory;
|
||||
|
||||
import com.glxp.api.admin.entity.inventory.DeviceMAOrderEntity;
|
||||
|
||||
public interface DeviceMaOrderDao {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(DeviceMAOrderEntity record);
|
||||
|
||||
int insertSelective(DeviceMAOrderEntity record);
|
||||
|
||||
DeviceMAOrderEntity selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(DeviceMAOrderEntity record);
|
||||
|
||||
int updateByPrimaryKey(DeviceMAOrderEntity record);
|
||||
}
|
Loading…
Reference in New Issue