ShykPartytargetKey.java 482 B

1234567891011121314151617181920212223
  1. package com.ghsc.partybuild.model;
  2. public class ShykPartytargetKey {
  3. private String partycode;
  4. private Integer shyktype;
  5. public String getPartycode() {
  6. return partycode;
  7. }
  8. public void setPartycode(String partycode) {
  9. this.partycode = partycode == null ? null : partycode.trim();
  10. }
  11. public Integer getShyktype() {
  12. return shyktype;
  13. }
  14. public void setShyktype(Integer shyktype) {
  15. this.shyktype = shyktype;
  16. }
  17. }