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.
udi-wms-java/src/main/java/com/glxp/api/entity/sync/SyncEditLogEntity.java

79 lines
1.6 KiB
Java

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;
}