FaultLog.java 552 Bytes
package vion.model;

import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;

import java.util.Date;

/**
 * 工单操作记录
 */
@Data
@TableName(value="tbl_fault_log")
public class FaultLog {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;//自增列
    private Integer storeId;//门店id(外键)
    private Integer taskId;//工单id(外键)
    private Integer operator;//操作者
    private String content;//操作内容
    private Date createTime;//创建时间
    private String remark;//备注
}