Commit b3b510c1 authored by Ken you's avatar Ken you

add ebs api taskId ----Ken

parent 00cd5103
...@@ -162,6 +162,25 @@ public class BalanceSheetPrcQueryDto { ...@@ -162,6 +162,25 @@ public class BalanceSheetPrcQueryDto {
*/ */
private BigDecimal begBal; private BigDecimal begBal;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getSource() { public String getSource() {
return source; return source;
} }
......
...@@ -161,6 +161,25 @@ public class BalanceSheetQueryDto { ...@@ -161,6 +161,25 @@ public class BalanceSheetQueryDto {
*/ */
private BigDecimal begBal; private BigDecimal begBal;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getSource() { public String getSource() {
return source; return source;
} }
......
...@@ -173,6 +173,25 @@ public class CashFlowQueryDto { ...@@ -173,6 +173,25 @@ public class CashFlowQueryDto {
*/ */
private BigDecimal ytdAmt; private BigDecimal ytdAmt;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Date getDate() { public Date getDate() {
return date; return date;
} }
......
...@@ -716,6 +716,25 @@ public class JournalEntryQueryDto { ...@@ -716,6 +716,25 @@ public class JournalEntryQueryDto {
@JsonFormat(pattern = "yyyy-MM-dd HH:ss:mm",timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:ss:mm",timezone = "GMT+8")
private Date lateUpdatedDate; private Date lateUpdatedDate;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Date getDate() { public Date getDate() {
return date; return date;
} }
......
...@@ -73,6 +73,19 @@ public class OrganizationAccountingRateQueryDto { ...@@ -73,6 +73,19 @@ public class OrganizationAccountingRateQueryDto {
*/ */
private String invalidDate; private String invalidDate;
/**
* 同步用于标记不同分页的数据,避免重复删除
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Date getDate() { public Date getDate() {
return date; return date;
} }
......
...@@ -161,6 +161,25 @@ public class ProfitLossStatementPrcQueryDto { ...@@ -161,6 +161,25 @@ public class ProfitLossStatementPrcQueryDto {
*/ */
private BigDecimal ytdAmt; private BigDecimal ytdAmt;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getSource() { public String getSource() {
return source; return source;
} }
......
...@@ -161,6 +161,25 @@ public class ProfitLossStatementQueryDto { ...@@ -161,6 +161,25 @@ public class ProfitLossStatementQueryDto {
*/ */
private BigDecimal ytdAmt; private BigDecimal ytdAmt;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getSource() { public String getSource() {
return source; return source;
} }
......
...@@ -546,6 +546,25 @@ public class TrialBalanceQueryDto { ...@@ -546,6 +546,25 @@ public class TrialBalanceQueryDto {
*/ */
private BigDecimal ytdCrBeq; private BigDecimal ytdCrBeq;
/**
* Database Column Remarks:
* 同步用于标记不同分页的数据,避免重复删除
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cash_flow.task_id
*
* @mbg.generated
*/
private String taskId;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Date getDate() { public Date getDate() {
return date; return date;
} }
......
package pwc.taxtech.atms.dao; package pwc.taxtech.atms.dao;
import java.util.List; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds;
import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyMapper;
import pwc.taxtech.atms.MyMapper; import pwc.taxtech.atms.entity.OrganizationAccountingRate;
import pwc.taxtech.atms.entity.OrganizationAccountingRate; import pwc.taxtech.atms.entity.OrganizationAccountingRateExample;
import pwc.taxtech.atms.entity.OrganizationAccountingRateExample;
import java.util.List;
@Mapper
public interface OrganizationAccountingRateMapper extends MyMapper { @Mapper
/** public interface OrganizationAccountingRateMapper extends MyMapper {
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
long countByExample(OrganizationAccountingRateExample example); */
long countByExample(OrganizationAccountingRateExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int deleteByExample(OrganizationAccountingRateExample example); */
int deleteByExample(OrganizationAccountingRateExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int deleteByPrimaryKey(Long id); */
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int insert(OrganizationAccountingRate record); */
int insert(OrganizationAccountingRate record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int insertSelective(OrganizationAccountingRate record); */
int insertSelective(OrganizationAccountingRate record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
List<OrganizationAccountingRate> selectByExampleWithRowbounds(OrganizationAccountingRateExample example, RowBounds rowBounds); */
List<OrganizationAccountingRate> selectByExampleWithRowbounds(OrganizationAccountingRateExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
List<OrganizationAccountingRate> selectByExample(OrganizationAccountingRateExample example); */
List<OrganizationAccountingRate> selectByExample(OrganizationAccountingRateExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
OrganizationAccountingRate selectByPrimaryKey(Long id); */
OrganizationAccountingRate selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int updateByExampleSelective(@Param("record") OrganizationAccountingRate record, @Param("example") OrganizationAccountingRateExample example); */
int updateByExampleSelective(@Param("record") OrganizationAccountingRate record, @Param("example") OrganizationAccountingRateExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int updateByExample(@Param("record") OrganizationAccountingRate record, @Param("example") OrganizationAccountingRateExample example); */
int updateByExample(@Param("record") OrganizationAccountingRate record, @Param("example") OrganizationAccountingRateExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKeySelective(OrganizationAccountingRate record); */
int updateByPrimaryKeySelective(OrganizationAccountingRate record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table organization_accounting_rate * This method was generated by MyBatis Generator.
* * This method corresponds to the database table organization_accounting_rate
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKey(OrganizationAccountingRate record); */
int updateByPrimaryKey(OrganizationAccountingRate record);
} }
\ No newline at end of file
package pwc.taxtech.atms.vat.dao; package pwc.taxtech.atms.vat.dao;
import java.util.List; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds;
import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.vat.dpo.BalanceSheetCondition;
import pwc.taxtech.atms.vat.dpo.BalanceSheetCondition; import pwc.taxtech.atms.vat.entity.BalanceSheet;
import pwc.taxtech.atms.vat.entity.BalanceSheet; import pwc.taxtech.atms.vat.entity.BalanceSheetExample;
import pwc.taxtech.atms.vat.entity.BalanceSheetExample;
import java.util.List;
@Mapper
public interface BalanceSheetMapper extends MyVatMapper { @Mapper
/** public interface BalanceSheetMapper extends MyVatMapper {
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
long countByExample(BalanceSheetExample example); */
long countByExample(BalanceSheetExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int deleteByExample(BalanceSheetExample example); */
int deleteByExample(BalanceSheetExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int deleteByPrimaryKey(Long id); */
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int insert(BalanceSheet record); */
int insert(BalanceSheet record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int insertSelective(BalanceSheet record); */
int insertSelective(BalanceSheet record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
List<BalanceSheet> selectByExampleWithRowbounds(BalanceSheetExample example, RowBounds rowBounds); */
List<BalanceSheet> selectByExampleWithRowbounds(BalanceSheetExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
List<BalanceSheet> selectByExample(BalanceSheetExample example); */
List<BalanceSheet> selectByExample(BalanceSheetExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
BalanceSheet selectByPrimaryKey(Long id); */
BalanceSheet selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int updateByExampleSelective(@Param("record") BalanceSheet record, @Param("example") BalanceSheetExample example); */
int updateByExampleSelective(@Param("record") BalanceSheet record, @Param("example") BalanceSheetExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int updateByExample(@Param("record") BalanceSheet record, @Param("example") BalanceSheetExample example); */
int updateByExample(@Param("record") BalanceSheet record, @Param("example") BalanceSheetExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKeySelective(BalanceSheet record); */
int updateByPrimaryKeySelective(BalanceSheet record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table balance_sheet * This method was generated by MyBatis Generator.
* * This method corresponds to the database table balance_sheet
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKey(BalanceSheet record); */
int updateByPrimaryKey(BalanceSheet record);
List<BalanceSheet> selectByCondition(@Param("bsCondition") BalanceSheetCondition condition);
List<BalanceSheet> selectByCondition(@Param("bsCondition") BalanceSheetCondition condition);
int insertBatch(List<BalanceSheet> bls);
int insertBatch(List<BalanceSheet> bls);
} }
\ No newline at end of file
package pwc.taxtech.atms.vat.dao; package pwc.taxtech.atms.vat.dao;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds; import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.vat.dpo.CashFlowCondition; import pwc.taxtech.atms.vat.dpo.CashFlowCondition;
import pwc.taxtech.atms.vat.entity.CashFlow; import pwc.taxtech.atms.vat.entity.CashFlow;
import pwc.taxtech.atms.vat.entity.CashFlowExample; import pwc.taxtech.atms.vat.entity.CashFlowExample;
import java.util.List; import java.util.List;
@Mapper @Mapper
public interface CashFlowMapper extends MyVatMapper { public interface CashFlowMapper extends MyVatMapper {
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
long countByExample(CashFlowExample example); long countByExample(CashFlowExample example);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int deleteByExample(CashFlowExample example); int deleteByExample(CashFlowExample example);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int deleteByPrimaryKey(Long id); int deleteByPrimaryKey(Long id);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int insert(CashFlow record); int insert(CashFlow record);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int insertSelective(CashFlow record); int insertSelective(CashFlow record);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
List<CashFlow> selectByExampleWithRowbounds(CashFlowExample example, RowBounds rowBounds); List<CashFlow> selectByExampleWithRowbounds(CashFlowExample example, RowBounds rowBounds);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
List<CashFlow> selectByExample(CashFlowExample example); List<CashFlow> selectByExample(CashFlowExample example);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
CashFlow selectByPrimaryKey(Long id); CashFlow selectByPrimaryKey(Long id);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int updateByExampleSelective(@Param("record") CashFlow record, @Param("example") CashFlowExample example); int updateByExampleSelective(@Param("record") CashFlow record, @Param("example") CashFlowExample example);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int updateByExample(@Param("record") CashFlow record, @Param("example") CashFlowExample example); int updateByExample(@Param("record") CashFlow record, @Param("example") CashFlowExample example);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int updateByPrimaryKeySelective(CashFlow record); int updateByPrimaryKeySelective(CashFlow record);
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method corresponds to the database table cash_flow * This method corresponds to the database table cash_flow
* *
* @mbg.generated * @mbg.generated
*/ */
int updateByPrimaryKey(CashFlow record); int updateByPrimaryKey(CashFlow record);
List<CashFlow> selectByCondition(@Param("cfCondition") CashFlowCondition condition); List<CashFlow> selectByCondition(@Param("cfCondition") CashFlowCondition condition);
Integer selectCountByCondition(@Param("cfCondition") CashFlowCondition condition); Integer selectCountByCondition(@Param("cfCondition") CashFlowCondition condition);
int insertBatch(List<CashFlow> cfs); int insertBatch(List<CashFlow> cfs);
} }
\ No newline at end of file
package pwc.taxtech.atms.vat.dao; package pwc.taxtech.atms.vat.dao;
import java.util.List; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds;
import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.vat.dpo.ProfitLossStatementCondition;
import pwc.taxtech.atms.vat.dpo.ProfitLossStatementCondition; import pwc.taxtech.atms.vat.entity.ProfitLossStatement;
import pwc.taxtech.atms.vat.entity.ProfitLossStatement; import pwc.taxtech.atms.vat.entity.ProfitLossStatementExample;
import pwc.taxtech.atms.vat.entity.ProfitLossStatementExample;
import java.util.List;
@Mapper
public interface ProfitLossStatementMapper extends MyVatMapper { @Mapper
/** public interface ProfitLossStatementMapper extends MyVatMapper {
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
long countByExample(ProfitLossStatementExample example); */
long countByExample(ProfitLossStatementExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int deleteByExample(ProfitLossStatementExample example); */
int deleteByExample(ProfitLossStatementExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int deleteByPrimaryKey(Long id); */
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int insert(ProfitLossStatement record); */
int insert(ProfitLossStatement record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int insertSelective(ProfitLossStatement record); */
int insertSelective(ProfitLossStatement record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
List<ProfitLossStatement> selectByExampleWithRowbounds(ProfitLossStatementExample example, RowBounds rowBounds); */
List<ProfitLossStatement> selectByExampleWithRowbounds(ProfitLossStatementExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
List<ProfitLossStatement> selectByExample(ProfitLossStatementExample example); */
List<ProfitLossStatement> selectByExample(ProfitLossStatementExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
ProfitLossStatement selectByPrimaryKey(Long id); */
ProfitLossStatement selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int updateByExampleSelective(@Param("record") ProfitLossStatement record, @Param("example") ProfitLossStatementExample example); */
int updateByExampleSelective(@Param("record") ProfitLossStatement record, @Param("example") ProfitLossStatementExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int updateByExample(@Param("record") ProfitLossStatement record, @Param("example") ProfitLossStatementExample example); */
int updateByExample(@Param("record") ProfitLossStatement record, @Param("example") ProfitLossStatementExample example);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKeySelective(ProfitLossStatement record); */
int updateByPrimaryKeySelective(ProfitLossStatement record);
/**
* This method was generated by MyBatis Generator. /**
* This method corresponds to the database table profit_loss_statement * This method was generated by MyBatis Generator.
* * This method corresponds to the database table profit_loss_statement
* @mbg.generated *
*/ * @mbg.generated
int updateByPrimaryKey(ProfitLossStatement record); */
int updateByPrimaryKey(ProfitLossStatement record);
List<ProfitLossStatement> selectByCondition(@Param("plCondition")ProfitLossStatementCondition condition);
List<ProfitLossStatement> selectByCondition(@Param("plCondition") ProfitLossStatementCondition condition);
int insertBatch(List<ProfitLossStatement> pls);
int insertBatch(List<ProfitLossStatement> pls);
} }
\ 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