erp-java/seata/example/entity/TransactionLog.java

22 lines
608 B
Java

package com.erp.example.seata.entity;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
* 财务流水实体
*/
@Data
public class TransactionLog {
private Long id;
private String txNo; // 交易流水号
private String orderNo; // 关联订单号
private Long customerId; // 客户ID
private BigDecimal amount; // 交易金额
private String type; // 交易类型
private String status; // 交易状态
private LocalDateTime createTime;
private LocalDateTime completeTime;
}