FWBAsssociatedPartyService.java
706 字节
package com.example.demo.service.imp;
import com.example.demo.mapper.FWBAssociatedPartyMapper;
import com.example.demo.model.FWBAssociatedParty;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("fwbAssService")
public class FWBAsssociatedPartyService implements com.example.demo.service.FWBAsssociatedPartyService {
@Autowired
FWBAssociatedPartyMapper fwbAssociatedPartyMapper;
public int insert(FWBAssociatedParty record){
return fwbAssociatedPartyMapper.insert(record);
}
public int insertSelective(FWBAssociatedParty record){
return fwbAssociatedPartyMapper.insertSelective(record);
}
}