3083d163dfda670c0fadc211740b7f7974417223.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. /**
  4. * Created by 61618 on 2019/2/25.
  5. */
  6. public class PersObj implements Serializable {
  7. private String nm;
  8. private String ptype;
  9. private Double lgtd;
  10. private Double lttd;
  11. private String objId;
  12. public String getObjId() {
  13. return objId;
  14. }
  15. public void setObjId(String objId) {
  16. this.objId = objId;
  17. }
  18. public String getNm() {
  19. return nm;
  20. }
  21. public void setNm(String nm) {
  22. this.nm = nm;
  23. }
  24. public String getPtype() {
  25. return ptype;
  26. }
  27. public void setPtype(String ptype) {
  28. this.ptype = ptype;
  29. }
  30. public Double getLgtd() {
  31. return lgtd;
  32. }
  33. public void setLgtd(Double lgtd) {
  34. this.lgtd = lgtd;
  35. }
  36. public Double getLttd() {
  37. return lttd;
  38. }
  39. public void setLttd(Double lttd) {
  40. this.lttd = lttd;
  41. }
  42. @Override
  43. public String toString() {
  44. return "PersObj{" +
  45. "nm='" + nm + '\'' +
  46. ", ptype='" + ptype + '\'' +
  47. ", lgtd=" + lgtd +
  48. ", lttd=" + lttd +
  49. ", objId='" + objId + '\'' +
  50. '}';
  51. }
  52. }