blob: 1d177ba9bdf799dab916a740bee7a4e99cae3071 [file] [log] [blame]
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;
}