blob: 1e4acf9b135cb754042e60ce50a80ec8e6138ee3 [file] [log] [blame]
package com.g9.g9backend.pojo;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.*;
/**
* ResourceVersion 实体类,表示资源版本的数据模型
*
* @author hcy
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class ResourceVersion {
@TableId
private int resourceVersionId;
private String resourceVersionName;
private int resourceId;
}