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.

56 lines
1002 B
Java

package com.supervision.domain;
import com.baomidou.mybatisplus.annotation.*;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
/**
*
* @TableName agent_info
*/
@TableName(value ="agent_info")
@Data
public class AgentInfo implements Serializable {
/**
*
*/
@TableId
private String id;
/**
* code
*/
private String agentCode;
/**
*
*/
private String agentName;
/**
*
*/
private String agentDesc;
/**
* 0 1
*/
private String adapterStatus;
/**
*
*/
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
/**
*
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updateTime;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}