SmartDataTaskSetDebugSql.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.template.model.pojo;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.annotations.ApiModel;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. import java.io.Serializable;
  11. import java.util.Date;
  12. /**
  13. * <p>
  14. * 数据源操作日志
  15. * </p>
  16. *
  17. * @author ceshi
  18. * @since 2023-12-05
  19. */
  20. @Data
  21. @EqualsAndHashCode(callSuper = false)
  22. @Accessors(chain = true)
  23. @ApiModel(value="SmartDataTaskSetDebugSql对象", description="数据源任务设置debug调试SQL")
  24. public class SmartDataTaskSetDebugSql implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. @ApiModelProperty(value = "主键id")
  27. @TableId(value = "tk_id", type = IdType.AUTO)
  28. private Integer tkId;
  29. @ApiModelProperty(value = "任务名称")
  30. private String tkName;
  31. @ApiModelProperty(value = "调试SQL语句")
  32. private Integer tkDebugSql;
  33. }