GITLAB

陈杰 / enrollStudent

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • enrollstudent
  • ..
  • enums
  • ArticleEnums.java
  • 123dbb81   研学代码提交 Browse Code »
    徐泉
    2021-06-29 16:58:44 +0800  
ArticleEnums.java 306 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.sincere.student.enums;

public enum ArticleEnums {

    advert(1),
    article(2);

    private int type;

    ArticleEnums(int type) {
        this.type = type;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }
}