package com.ruoyi.tms.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;
|
/**
|
* 调度单管理日志对象 tms_dispatch_order_log
|
*
|
* @author ruoyi
|
* @date 2026-03-12
|
*/
|
@Data
|
public class TmsDispatchOrderLog{
|
|
|
/** */
|
@TableField("id")
|
private Integer id;
|
|
|
/** 头id */
|
@Excel(name = "头id")
|
|
@TableField("head_id")
|
private Integer headId;
|
|
|
/** 创建者 */
|
@TableField("create_by")
|
private String createBy;
|
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
private Date createTime;
|
|
|
/** 备注 */
|
@Excel(name = "备注")
|
|
@TableField("notes")
|
private String notes;
|
|
|
/** 节点 */
|
@Excel(name = "节点")
|
|
@TableField("node")
|
private String node;
|
|
|
}
|