Blame view

footsafety/app/src/main/java/etelligens/com/foodsafety/model/AddBusinessM.java 437 Bytes
f7a13682   “wangming”   项目初始化
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 AddBusinessM {
      private int storeID;
      private String store_Name;
  
  
      public int getStoreID() {
          return storeID;
      }
  
      public void setStoreID(int storeID) {
          this.storeID = storeID;
      }
  
      public String getStore_Name() {
          return store_Name;
      }
  
      public void setStore_Name(String store_Name) {
          this.store_Name = store_Name;
      }
  }