update 提现记录表

This commit is contained in:
2023-08-08 14:35:18 +08:00
parent 7ca9ecd514
commit c0edb0aee9
4 changed files with 121 additions and 57 deletions

View File

@@ -8,8 +8,8 @@ import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* 提现记录表
*/
* 提现记录表
*/
@Getter
@Setter
@Builder
@@ -17,52 +17,57 @@ import lombok.Setter;
@NoArgsConstructor
public class ClearingWithdrawInfo {
/**
* 主键
*/
* 主键
*/
private Integer id;
/**
* 提现编号
*/
* 商户id
*/
private String merchantId;
/**
* 提现编号
*/
private String withdrawCode;
/**
* 提现状态(0-处理中1-已提现)
*/
* 提现状态(0-处理中1-已提现)
*/
private String withdrawStatus;
/**
* 申请时间
*/
* 申请时间
*/
private Date applicationTime;
/**
* 到账时间
*/
* 到账时间
*/
private Date arrivalTime;
/**
* 创建人
*/
* 创建人
*/
private String createBy;
/**
* 创建时间
*/
* 创建时间
*/
private Date createTime;
/**
* 更新人
*/
* 更新人
*/
private String updateBy;
/**
* 更新时间
*/
* 更新时间
*/
private Date updateTime;
/**
* 删除标识0-正常1-删除)
*/
* 删除标识0-正常1-删除)
*/
private String delFlag;
}

View File

@@ -8,6 +8,7 @@ import java.util.List;
public interface ClearingWithdrawInfoMapper {
/**
* delete by primary key
*
* @param id primaryKey
* @return deleteCount
*/
@@ -15,6 +16,7 @@ public interface ClearingWithdrawInfoMapper {
/**
* insert record to table
*
* @param record the record
* @return insert count
*/
@@ -26,6 +28,7 @@ public interface ClearingWithdrawInfoMapper {
/**
* insert record to table selective
*
* @param record the record
* @return insert count
*/
@@ -33,6 +36,7 @@ public interface ClearingWithdrawInfoMapper {
/**
* select by primary key
*
* @param id primary key
* @return object by primary key
*/
@@ -40,6 +44,7 @@ public interface ClearingWithdrawInfoMapper {
/**
* update record selective
*
* @param record the updated record
* @return update count
*/
@@ -47,6 +52,7 @@ public interface ClearingWithdrawInfoMapper {
/**
* update record
*
* @param record the updated record
* @return update count
*/