2023-12-06 10:43:41 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.domain;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 抓取规则
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class FatchRule extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
private Long id;
|
|
|
|
|
private String batchNumber;
|
|
|
|
|
private String fileName;
|
|
|
|
|
private String startContent;
|
|
|
|
|
private String endContent;
|
2023-12-06 17:30:37 +08:00
|
|
|
private String column;
|
|
|
|
|
private String columnName;
|
|
|
|
|
private Integer isDefault;
|
|
|
|
|
|
|
|
|
|
private Long templateId;
|
2023-12-08 17:59:09 +08:00
|
|
|
private String databaseName;
|
2023-12-06 17:30:37 +08:00
|
|
|
|
2023-12-06 10:43:41 +08:00
|
|
|
}
|