Commit 268f74cb authored by shiyu's avatar shiyu

结算记录

parent e699f9bb
package com.wwdz.ch.db.mapper.distribution;
import com.wwdz.ch.db.domain.distribution.SettlementRecord;
import com.wwdz.ch.db.domain.distribution.SettlementRecordExample;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface SettlementRecordMapper {
long countByExample(SettlementRecordExample example);
int deleteByExample(SettlementRecordExample example);
int deleteByPrimaryKey(Long id);
int insert(SettlementRecord record);
int insertSelective(SettlementRecord record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table settlement_record
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SettlementRecord selectOneByExample(SettlementRecordExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table settlement_record
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SettlementRecord selectOneByExampleSelective(@Param("example") SettlementRecordExample example, @Param("selective") SettlementRecord.Column ... selective);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table settlement_record
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SettlementRecord selectOneByExampleWithBLOBs(SettlementRecordExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table settlement_record
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<SettlementRecord> selectByExampleSelective(@Param("example") SettlementRecordExample example, @Param("selective") SettlementRecord.Column ... selective);
List<SettlementRecord> selectByExampleWithBLOBs(SettlementRecordExample example);
List<SettlementRecord> selectByExample(SettlementRecordExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table settlement_record
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SettlementRecord selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") SettlementRecord.Column ... selective);
SettlementRecord selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") SettlementRecord record, @Param("example") SettlementRecordExample example);
int updateByExampleWithBLOBs(@Param("record") SettlementRecord record, @Param("example") SettlementRecordExample example);
int updateByExample(@Param("record") SettlementRecord record, @Param("example") SettlementRecordExample example);
int updateByPrimaryKeySelective(SettlementRecord record);
int updateByPrimaryKeyWithBLOBs(SettlementRecord record);
int updateByPrimaryKey(SettlementRecord record);
}
\ No newline at end of file
......@@ -72,7 +72,7 @@
<javaClientGenerator type="XMLMAPPER" targetPackage="com.wwdz.ch.db.mapper.distribution"
targetProject="ch-dao/src/main/java"/>
<table tableName="distributor_profit" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true">
<table tableName="settlement_record" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true">
<generatedKey column="id" sqlStatement="Mysql" identity="true" />
</table>
......
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