Created
November 16, 2014 11:13
-
-
Save gitbricho/368b96bb50802b17e380 to your computer and use it in GitHub Desktop.
healthcare: com.itrane.healthcare.command.VodListCmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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