Logo white

JAVA / Footsafety-Android

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Footsafety-Android
  • ..
  • model
  • CreateUseFirstItemModalBakend.java
  • 项目初始化
    f7a13682
    “wangming” authored
    2024-10-29 20:37:51 +0800  
    Browse Code »
CreateUseFirstItemModalBakend.java 426 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 22 23
package etelligens.com.foodsafety.model;

public class CreateUseFirstItemModalBakend {
    private int id;
    private String description;


    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
}