package com.ruoyi.cwgl.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.util.Date;
|
import lombok.Data;
|
/**
|
* 应付账单管理日志对象 payable_bill_management_log
|
*
|
* @author ruoyi
|
* @date 2025-12-23
|
*/
|
@Data
|
public class PayableBillManagementLog{
|
|
|
/** 主键 */
|
@TableField("id")
|
private Integer id;
|
|
|
/** 应付管理表id */
|
@Excel(name = "应付管理表id")
|
|
@TableField("bill_id")
|
private Integer billId;
|
|
|
/** 创建者 */
|
@TableField("create_by")
|
private String createBy;
|
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
private Date createTime;
|
|
|
/** 操作说明 */
|
@Excel(name = "操作说明")
|
|
@TableField("operation")
|
private String operation;
|
|
/** 来源系统ID(用于审核推送时识别目标TMS系统) */
|
@Excel(name = "来源系统ID")
|
|
@TableField("source_system_id")
|
private Integer sourceSystemId;
|
|
}
|