HospitalCouponTemplateGroup.java 1.04 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
package com.lyms.etl.model;

/**
* 医院和优惠券模板表 多对一 对应关系
* @date: 2017-05-05 11:43:33
*/
public class HospitalCouponTemplateGroup {
private String id;
private String hospitalId;
private String couponTemplateGroupId;
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}
public String getHospitalId() {
return hospitalId;
}

public void setHospitalId(String hospitalId) {
this.hospitalId = hospitalId;
}
public String getCouponTemplateGroupId() {
return couponTemplateGroupId;
}

public void setCouponTemplateGroupId(String couponTemplateGroupId) {
this.couponTemplateGroupId = couponTemplateGroupId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("HospitalCouponTemplateGroup [ ");
sb.append("id=" + id + ",");
sb.append("hospitalId=" + hospitalId + ",");
sb.append("couponTemplateGroupId=" + couponTemplateGroupId + ",");
sb.replace(sb.length()-1, sb.length(), " ]");
return sb.toString();
}
}