You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
259 B
19 lines
259 B
package com.bfd.task.model;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
* 网站表
|
|
* @author jian.mao
|
|
* @date 2023年9月19日
|
|
* @description
|
|
*/
|
|
@Data
|
|
public class WebSite {
|
|
|
|
private Integer id;
|
|
private Integer siteId;
|
|
private String cid;
|
|
private Integer status;
|
|
}
|