Commit a391b98a authored by frank.xa.zhang's avatar frank.xa.zhang

add period table

parent 3706ccc0
package pwc.taxtech.atms.vat.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.vat.entity.PeriodModifiedReportCell;
import pwc.taxtech.atms.vat.entity.PeriodModifiedReportCellExample;
@Mapper
public interface PeriodModifiedReportCellMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
long countByExample(PeriodModifiedReportCellExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int deleteByExample(PeriodModifiedReportCellExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int insert(PeriodModifiedReportCell record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int insertSelective(PeriodModifiedReportCell record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
List<PeriodModifiedReportCell> selectByExampleWithRowbounds(PeriodModifiedReportCellExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
List<PeriodModifiedReportCell> selectByExample(PeriodModifiedReportCellExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
PeriodModifiedReportCell selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") PeriodModifiedReportCell record, @Param("example") PeriodModifiedReportCellExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int updateByExample(@Param("record") PeriodModifiedReportCell record, @Param("example") PeriodModifiedReportCellExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(PeriodModifiedReportCell record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int updateByPrimaryKey(PeriodModifiedReportCell record);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment