czt
2026-02-26 c7e17f74474198316a39b9bf7afde5d403a49c56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.fzzy.igds.app.v1.mapper;
 
import com.fzzy.igds.app.v1.data.ParamOrder;
import org.springframework.data.repository.query.Param;
 
/**
 * @Author: YYC
 * @Description:
 * @DateTime: 2026-1-13 9:54
 **/
public interface PhoneMapper {
 
    /**
     * 工单审核
     * @param param
     * @return
     */
    int updateOrder(@Param("param") ParamOrder param);
 
}