Skip to content

Instantly share code, notes, and snippets.

@gitbricho
Created November 16, 2014 11:13
Show Gist options
  • Save gitbricho/368b96bb50802b17e380 to your computer and use it in GitHub Desktop.
Save gitbricho/368b96bb50802b17e380 to your computer and use it in GitHub Desktop.
healthcare: com.itrane.healthcare.command.VodListCmd
/**
* vod 一覧ビュー(vodlist.html)用コマンド.
*/
public class VodListCmd implements Serializable {
private static final long serialVersionUID = 1L;
private String prev;
private String next;
private List<VitalMst> vms;
private List<Vod> vods;
private DateTime startDt;
public VodListCmd() {}
public VodListCmd(String prev, String next,
List<VitalMst> vms, List<Vod> vods, DateTime dt) {
super();
this.prev = prev;
this.next = next;
this.vms = vms;
this.vods = vods;
this.startDt = dt;
}
// getter, setter
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment