清分账单加字段 交易日期

This commit is contained in:
2023-08-22 17:06:20 +08:00
parent 3394fdc753
commit ce7e2fc6f9
3 changed files with 75 additions and 51 deletions

View File

@@ -8,6 +8,7 @@ import java.util.List;
public interface ClearingBillInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
@@ -15,6 +16,7 @@ public interface ClearingBillInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
@@ -22,6 +24,7 @@ public interface ClearingBillInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
@@ -29,6 +32,7 @@ public interface ClearingBillInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
@@ -36,6 +40,7 @@ public interface ClearingBillInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
@@ -43,6 +48,7 @@ public interface ClearingBillInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/