com.founder.core.domain.MzPayChargePercentKey Maven / Gradle / Ivy
package com.founder.core.domain;
import java.io.Serializable;
public class MzPayChargePercentKey implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column mz_pay_charge_percent.pay_unit
*
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
private String pay_unit;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column mz_pay_charge_percent.responce_group
*
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
private String responce_group;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column mz_pay_charge_percent.charge_group
*
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
private String charge_group;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column mz_pay_charge_percent.type
*
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
private String type;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column mz_pay_charge_percent.pay_unit
*
* @return the value of mz_pay_charge_percent.pay_unit
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public String getPay_unit() {
return pay_unit;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column mz_pay_charge_percent.pay_unit
*
* @param pay_unit the value for mz_pay_charge_percent.pay_unit
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public void setPay_unit(String pay_unit) {
this.pay_unit = pay_unit;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column mz_pay_charge_percent.responce_group
*
* @return the value of mz_pay_charge_percent.responce_group
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public String getResponce_group() {
return responce_group;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column mz_pay_charge_percent.responce_group
*
* @param responce_group the value for mz_pay_charge_percent.responce_group
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public void setResponce_group(String responce_group) {
this.responce_group = responce_group;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column mz_pay_charge_percent.charge_group
*
* @return the value of mz_pay_charge_percent.charge_group
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public String getCharge_group() {
return charge_group;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column mz_pay_charge_percent.charge_group
*
* @param charge_group the value for mz_pay_charge_percent.charge_group
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public void setCharge_group(String charge_group) {
this.charge_group = charge_group;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column mz_pay_charge_percent.type
*
* @return the value of mz_pay_charge_percent.type
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public String getType() {
return type;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column mz_pay_charge_percent.type
*
* @param type the value for mz_pay_charge_percent.type
* @mbggenerated Fri Jan 19 16:02:33 CST 2018
*/
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy