value
2024-04-02 4c563cb7274be53e15f8ce5537ef6e57e15b6458
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yuanchu.mom.service;
 
import com.yuanchu.mom.pojo.InsOrderState;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
* @author admin
* @description 针对表【ins_order_state】的数据库操作Service
* @createDate 2024-04-01 11:44:50
*/
public interface InsOrderStateService extends IService<InsOrderState> {
 
}