| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.template.model.pojo;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 数据源操作日志
- * </p>
- *
- * @author ceshi
- * @since 2023-12-05
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @ApiModel(value="SmartDataTaskSetDebugSql对象", description="数据源任务设置debug调试SQL")
- public class SmartDataTaskSetDebugSql implements Serializable {
- private static final long serialVersionUID = 1L;
- @ApiModelProperty(value = "主键id")
- @TableId(value = "tk_id", type = IdType.AUTO)
- private Integer tkId;
- @ApiModelProperty(value = "任务名称")
- private String tkName;
- @ApiModelProperty(value = "调试SQL语句")
- private Integer tkDebugSql;
- }
|