package com.g9.g9backend.pojo; | |
import com.baomidou.mybatisplus.annotation.IdType; | |
import com.baomidou.mybatisplus.annotation.TableId; | |
import lombok.*; | |
/** | |
* ResourceVersion 实体类,表示资源版本的数据模型 | |
* | |
* @author hcy | |
*/ | |
@Data | |
@AllArgsConstructor | |
@NoArgsConstructor | |
public class ResourceVersion { | |
@TableId(type = IdType.AUTO) | |
private int resourceVersionId; | |
private String resourceVersionName; | |
private int resourceId; | |
private int seeds; | |
} |