1
zj
2026-01-13 e7a6b287a9c8d59e44f2ef766cb36924705986e7
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);
}