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.
19 lines
452 B
Java
19 lines
452 B
Java
package com.glxp.api.dao.thrsys;
|
|
|
|
import com.glxp.api.entity.thrsys.ThrInvOrder;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface ThrInvOrderMapper {
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insert(ThrInvOrder record);
|
|
|
|
int insertSelective(ThrInvOrder record);
|
|
|
|
ThrInvOrder selectByPrimaryKey(Integer id);
|
|
|
|
int updateByPrimaryKeySelective(ThrInvOrder record);
|
|
|
|
int updateByPrimaryKey(ThrInvOrder record);
|
|
} |