| 123456789101112131415 |
- package com.ydtech.modules.order.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ydtech.modules.order.entity.InsAreaCompany;
- import com.ydtech.modules.order.entity.po.InsSubOrderUpdateDetail;
- /**
- * @author Administrator
- * @description 针对表【ins_sub_order_update_detail(子订单状态更新记录)】的数据库操作Service
- * @createDate 2024-10-08 09:32:57
- */
- public interface InsSubOrderUpdateDetailService extends IService<InsSubOrderUpdateDetail> {
- void insertData(InsAreaCompany subOrder, String orderStatus, String newStatus,String updateMethod);
- }
|