You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
350 B
Java
17 lines
350 B
Java
package com.shxy.i2.dao;
|
|
|
|
import com.shxy.i2.dto.Data_YxlDto;
|
|
import com.shxy.i2.entity.Data_Yx;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.math.BigInteger;
|
|
import java.util.List;
|
|
|
|
public interface Data_YxDao {
|
|
|
|
|
|
List<Data_YxlDto> selectByPrimaryKey(@Param("maxid") BigInteger maxid);
|
|
|
|
|
|
int updateByPrimaryKey(Data_Yx record);
|
|
} |