SjlrCjjlDTO.java 610 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.huimv.dto;
  2. import java.util.List;
  3. import com.huimv.sjlr.dataobject.SjlrCjjl;
  4. public class SjlrCjjlDTO {
  5. private String cjrq; //采精日期
  6. private int count; //当前采精数
  7. private List<SjlrCjjl> cjjlList; //采精内容
  8. public String getCjrq() {
  9. return cjrq;
  10. }
  11. public void setCjrq(String cjrq) {
  12. this.cjrq = cjrq;
  13. }
  14. public int getCount() {
  15. return count;
  16. }
  17. public void setCount(int count) {
  18. this.count = count;
  19. }
  20. public List<SjlrCjjl> getCjjlList() {
  21. return cjjlList;
  22. }
  23. public void setCjjlList(List<SjlrCjjl> cjjlList) {
  24. this.cjjlList = cjjlList;
  25. }
  26. }