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
399 B
Java
17 lines
399 B
Java
2 years ago
|
package com.shxy.i2.dao;
|
||
|
|
||
|
import com.shxy.i2.entity.Upload_check;
|
||
|
|
||
|
public interface Upload_checkDao {
|
||
|
int deleteByPrimaryKey(String checkType);
|
||
|
|
||
|
int insert(Upload_check record);
|
||
|
|
||
|
int insertSelective(Upload_check record);
|
||
|
|
||
|
Upload_check selectByPrimaryKey(String checkType);
|
||
|
|
||
|
int updateByPrimaryKeySelective(Upload_check record);
|
||
|
|
||
|
int updateByPrimaryKey(Upload_check record);
|
||
|
}
|