Closed MontyPan closed 5 years ago
Foo 是一個 pojo / VO,他裡頭的 field 名稱必須跟 google sheet 的欄位名稱相同才有辦法 mapping 起來。例如:
Foo
public class Foo { String name; boolean close; Date start; String end; String s101; //省略 getter & setter }
然後這樣就能得到一個 Foo 的 ArrayList
ArrayList
for (Foo f : new Mapper<Foo>(SHEET_ID, 1).result) { System.out.println(f.name + ", " + f.start + ", " + f.close); }
這是一個急行軍的作品,目的是讓你可以開始實際測試,所以一些例外處理或是噁爛 code 請盡量容忍......
Foo
是一個 pojo / VO,他裡頭的 field 名稱必須跟 google sheet 的欄位名稱相同才有辦法 mapping 起來。例如:然後這樣就能得到一個
Foo
的ArrayList
大人饒命 :scream:
這是一個急行軍的作品,目的是讓你可以開始實際測試,所以一些例外處理或是噁爛 code 請盡量容忍......