1234567891011121314151617181920212223 |
- package com.ghsc.partybuild.model;
- public class ShykPartytargetKey {
- private String partycode;
- private Integer shyktype;
- public String getPartycode() {
- return partycode;
- }
- public void setPartycode(String partycode) {
- this.partycode = partycode == null ? null : partycode.trim();
- }
- public Integer getShyktype() {
- return shyktype;
- }
- public void setShyktype(Integer shyktype) {
- this.shyktype = shyktype;
- }
- }
|