package com.mini.capi.biz.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; import lombok.Getter; import lombok.Setter; /** *
* 转账明细表 *
* * @author gaoxq * @since 2025-11-09 */ @Getter @Setter @TableName("erp_transfer") public class ErpTransfer implements Serializable { private static final long serialVersionUID = 1L; @TableField("create_time") private LocalDateTime createTime; /** * 转账ID */ @TableId(value = "transfer_id", type = IdType.AUTO) private String transferId; /** * 转出账户 */ @TableField("from_account_id") private String fromAccountId; /** * 转入账户 */ @TableField("to_account_id") private String toAccountId; /** * 支出分类 */ @TableField("category_id") private String categoryId; /** * 交易金额 */ @TableField("amount") private BigDecimal amount; /** * 交易备注 */ @TableField("remark") private String remark; @TableField("update_time") private LocalDateTime updateTime; /** * 租户id */ @TableField("f_tenant_id") private String fTenantId; /** * 流程id */ @TableField("f_flow_id") private String fFlowId; /** * 流程任务主键 */ @TableField("f_flow_task_id") private String fFlowTaskId; /** * 流程任务状态 */ @TableField("f_flow_state") private Integer fFlowState; }