FWBAssociatedPartyMapper.java 444 字节
package com.example.demo.mapper;

import com.example.demo.model.FWBAssociatedParty;

public interface FWBAssociatedPartyMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(FWBAssociatedParty record);

    int insertSelective(FWBAssociatedParty record);

    FWBAssociatedParty selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(FWBAssociatedParty record);

    int updateByPrimaryKey(FWBAssociatedParty record);
}