123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package com.huimv.dto;
- import java.util.Date;
- import java.util.List;
- import com.huimv.sjlr.dataobject.SjlrFmjl;
- public class sjlrFmjlDTO {
- private List<SjlrFmjl> fmList;
- private int count;
- private int countj ;
- private int countr;
- private int countjx;
- private int countjz;
- private int counts;
- private int countm;
- private String allCountH;
- private String allCountS;
- private String fmrq;
- private Date fmsj;
- private int countgz;
- private int countmz;
- public void setFmList(List<SjlrFmjl> fmList) {
- this.fmList = fmList;
- }
- public void setCountj(int countj) {
- this.countj = countj;
- }
- public void setCountr(int countr) {
- this.countr = countr;
- }
- public void setCountjx(int countjx) {
- this.countjx = countjx;
- }
- public void setCountjz(int countjz) {
- this.countjz = countjz;
- }
- public void setCounts(int counts) {
- this.counts = counts;
- }
- public void setCountm(int countm) {
- this.countm = countm;
- }
- public void setFmrq(String fmrq) {
- this.fmrq = fmrq;
- }
- public List<SjlrFmjl> getFmList() {
- return fmList;
- }
- public int getCountj() {
- return countj;
- }
- public int getCountr() {
- return countr;
- }
- public int getCountjx() {
- return countjx;
- }
- public int getCountjz() {
- return countjz;
- }
- public int getCounts() {
- return counts;
- }
- public int getCountm() {
- return countm;
- }
- public String getFmrq() {
- return fmrq;
- }
- public Date getFmsj() {
- return fmsj;
- }
- public void setFmsj(Date fmsj) {
- this.fmsj = fmsj;
- }
- public void setAllCountH(String allCountH) {
- this.allCountH = allCountH;
- }
- public void setAllCountS(String allCountS) {
- this.allCountS = allCountS;
- }
- public String getAllCountH() {
- return allCountH;
- }
- public String getAllCountS() {
- return allCountS;
- }
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public int getCountgz() {
- return countgz;
- }
- public int getCountmz() {
- return countmz;
- }
- public void setCountgz(int countgz) {
- this.countgz = countgz;
- }
- public void setCountmz(int countmz) {
- this.countmz = countmz;
- }
-
- }
|