123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.ygj.yuemum.domain.distributionchannel;
- public class DcIntroduceLog {
- private Integer page;
- private Integer limit;
- private Integer id;
- private String xul_openid;
- private String xul_phone;
- private Integer xul_event;
- private String xul_date;
- private String xul_introducer_phone;
- private Integer xul_pm_type;
- private String xul_orderno;
- public Integer getPage() {
- return page;
- }
- public void setPage(Integer page) {
- this.page = page;
- }
- public Integer getLimit() {
- return limit;
- }
- public void setLimit(Integer limit) {
- this.limit = limit;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getXul_openid() {
- return xul_openid;
- }
- public void setXul_openid(String xul_openid) {
- this.xul_openid = xul_openid;
- }
- public String getXul_phone() {
- return xul_phone;
- }
- public void setXul_phone(String xul_phone) {
- this.xul_phone = xul_phone;
- }
- public Integer getXul_event() {
- return xul_event;
- }
- public void setXul_event(Integer xul_event) {
- this.xul_event = xul_event;
- }
- public String getXul_date() {
- return xul_date;
- }
- public void setXul_date(String xul_date) {
- this.xul_date = xul_date;
- }
- public String getXul_introducer_phone() {
- return xul_introducer_phone;
- }
- public void setXul_introducer_phone(String xul_introducer_phone) {
- this.xul_introducer_phone = xul_introducer_phone;
- }
- public Integer getXul_pm_type() {
- return xul_pm_type;
- }
- public void setXul_pm_type(Integer xul_pm_type) {
- this.xul_pm_type = xul_pm_type;
- }
- public String getXul_orderno() {
- return xul_orderno;
- }
- public void setXul_orderno(String xul_orderno) {
- this.xul_orderno = xul_orderno;
- }
- }
|