123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "d_waynode_result")
- public class DWaynodeResult extends MiniserviceBaseModel implements Serializable {
- @Id
- private Integer id;
- private Integer aid;
- private Integer jid;
- private String wcode;
- private String ncode;
- private String v1;
- private String v2;
- private String v3;
- private static final long serialVersionUID = 1L;
- /**
- * @return id
- */
- public Integer getId() {
- return id;
- }
- /**
- * @param id
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * @return aid
- */
- public Integer getAid() {
- return aid;
- }
- /**
- * @param aid
- */
- public void setAid(Integer aid) {
- this.aid = aid;
- }
- /**
- * @return jid
- */
- public Integer getJid() {
- return jid;
- }
- /**
- * @param jid
- */
- public void setJid(Integer jid) {
- this.jid = jid;
- }
- /**
- * @return wcode
- */
- public String getWcode() {
- return wcode;
- }
- /**
- * @param wcode
- */
- public void setWcode(String wcode) {
- this.wcode = wcode == null ? null : wcode.trim();
- }
- /**
- * @return ncode
- */
- public String getNcode() {
- return ncode;
- }
- /**
- * @param ncode
- */
- public void setNcode(String ncode) {
- this.ncode = ncode == null ? null : ncode.trim();
- }
- /**
- * @return v1
- */
- public String getV1() {
- return v1;
- }
- /**
- * @param v1
- */
- public void setV1(String v1) {
- this.v1 = v1 == null ? null : v1.trim();
- }
- /**
- * @return v2
- */
- public String getV2() {
- return v2;
- }
- /**
- * @param v2
- */
- public void setV2(String v2) {
- this.v2 = v2 == null ? null : v2.trim();
- }
- /**
- * @return v3
- */
- public String getV3() {
- return v3;
- }
- /**
- * @param v3
- */
- public void setV3(String v3) {
- this.v3 = v3 == null ? null : v3.trim();
- }
- }
|