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.
18 lines
456 B
Java
18 lines
456 B
Java
package com.shxy.i2.dao;
|
|
|
|
import com.shxy.i2.entity.Upload_check;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.math.BigInteger;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public interface Upload_checkDao {
|
|
|
|
Upload_check selectByPrimaryKey(String checkType);
|
|
|
|
List<Upload_check> selectAll();
|
|
|
|
|
|
int updateByPrimaryKey(@Param("checkType") String checkType, @Param("value") BigInteger value, @Param("updateTime") Date updateTime);
|
|
} |