You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.sync ;
import com.baomidou.mybatisplus.annotation.IdType ;
import com.baomidou.mybatisplus.annotation.TableField ;
import com.baomidou.mybatisplus.annotation.TableId ;
import com.baomidou.mybatisplus.annotation.TableName ;
import java.io.Serializable ;
import java.util.Date ;
import lombok.Data ;
@Data
@TableName ( value = "sync_edit_log" )
public class SyncEditLogEntity implements Serializable {
@TableId ( value = "id" , type = IdType . INPUT )
private Integer id ;
/**
* 日志记录号
*/
@TableField ( value = "recordCode" )
private String recordCode ;
/**
* 操作类型( 1:增; 2:删, 3:改, 4:查)
*/
@TableField ( value = "operType" )
private Byte operType ;
/**
* 操作数据类型
*/
@TableField ( value = "dataType" )
private String dataType ;
/**
* 接口地址
*/
@TableField ( value = "url" )
private String url ;
/**
* 请求参数
*/
@TableField ( value = "param" )
private String param ;
/**
* 请求结果
*/
@TableField ( value = "jsonResult" )
private String jsonResult ;
/**
* 1:本地操作; 2: 对方操作
*/
@TableField ( value = "directType" )
private Byte directType ;
/**
* 备注说明
*/
@TableField ( value = "remark" )
private String remark ;
/**
* 操作人
*/
@TableField ( value = "operUser" )
private String operUser ;
/**
* 更新时间
*/
@TableField ( value = "updateTime" )
private Date updateTime ;
private static final long serialVersionUID = 1L ;
}