ws
zyy
2025-08-06 f0d5502b38235cd545d2ff31ae5c9b0591ae9a7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.nq.service;
 
import com.nq.pojo.AgentDistributionUser;
 
public interface IAgentDistributionUserService {
    /**
     * 新增
     */
    int insert(AgentDistributionUser agentDistributionUser);
 
    /**
     * 更新
     */
    int update(AgentDistributionUser agentDistributionUser);
}