Skip to content
  • This project
    • Loading...
  • Sign in

white / hcgtwo

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hcgtwo
  • ..
  • model
  • HcgOptions.java
  • white's avatar
    first commit · a479feb5
    white committed 2022-03-10 09:48:56 +0800
    a479feb5
HcgOptions.java 304 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package cn.csbr.springboot.dao.model;

import lombok.Getter;
import lombok.Setter;

import javax.persistence.Table;

@Getter
@Setter
@Table( name = "hcg_options")
public class HcgOptions {
    private String guid;
    private String optiontype;
    private String optionvalue;
    private String dome;
}