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;
|
/**
|
* 预估应收账单日志对象 estimated_receivable_bill_log
|
*
|
* @author ruoyi
|
* @date 2025-08-13
|
*/
|
@Data
|
public class EstimatedReceivableBillLog{
|
|
|
/** 主键 */
|
@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;
|
|
/**
|
* 附件名称
|
*/
|
@TableField("file_name")
|
private String fileName;
|
|
}
|