MT2201Service.java
874 字节
package com.sunyo.wlpt.message.builder.service;
import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201;
import org.omg.CORBA.OBJECT_NOT_EXIST;
import java.io.IOException;
import java.text.ParseException;
import java.util.Map;
public interface MT2201Service {
int deleteByPrimaryKey(String uuid);
int insert(NMMS_CUSTOM_MT2201 record);
int insertSelective(NMMS_CUSTOM_MT2201 record);
NMMS_CUSTOM_MT2201 selectByPrimaryKey(String uuid);
int updateByPrimaryKeySelective(NMMS_CUSTOM_MT2201 record);
int updateByPrimaryKey(NMMS_CUSTOM_MT2201 record);
Map<String, Object> creatMt2201(Map<String, Object> map) throws IOException, ParseException;
Map<String, Object> editMt2201(Map<String, Object> map) throws IOException, ParseException;
Map<String, Object> removeMt2201(Map<String, Object> map) throws IOException, ParseException;
}