Commit de89b137 authored by zjy's avatar zjy

user/role/tright 7.3

parents c9c6cf30 14c685d7
package com.pangding.web.authority.vo;
import com.yanzuoguang.dao.TableAnnotation;
@TableAnnotation("pd_company_divide_rule")
public class CompanyDivideRuleVo extends CompanyVo{
@TableAnnotation("id")
private String companyDivideId;
@TableAnnotation("company_id")
private String companyId;
@TableAnnotation("source_value")
private double sourceValue;
@TableAnnotation("real_source_value")
private double realSourceValue;
@TableAnnotation("source_explain")
private String sourceExplain;
@TableAnnotation("pass_value")
private double passValue;
@TableAnnotation("real_pass_value")
private double realPassValue;
@TableAnnotation("pass_explain")
private String passExplain;
@TableAnnotation("super_value")
private double superValue;
@TableAnnotation("real_super_value")
private double realSuperValue;
@TableAnnotation("super_explain")
private String superExplain;
private double fee;
@TableAnnotation("bonus_type")
private int bonusType;
@TableAnnotation("bonus_value")
private double bonusValue;
@TableAnnotation("real_bonus_value")
private double realBonusValue;
@TableAnnotation("bonus_explain")
private String bonusExlain;
@TableAnnotation("divide_status")
private int divideStatus;
public String getCompanyDivideId() {
return companyDivideId;
}
public void setCompanyDivideId(String companyDivideId) {
this.companyDivideId = companyDivideId;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public double getSourceValue() {
return sourceValue;
}
public void setSourceValue(double sourceValue) {
this.sourceValue = sourceValue;
}
public double getRealSourceValue() {
return realSourceValue;
}
public void setRealSourceValue(double realSourceValue) {
this.realSourceValue = realSourceValue;
}
public String getSourceExplain() {
return sourceExplain;
}
public void setSourceExplain(String sourceExplain) {
this.sourceExplain = sourceExplain;
}
public double getPassValue() {
return passValue;
}
public void setPassValue(double passValue) {
this.passValue = passValue;
}
public double getRealPassValue() {
return realPassValue;
}
public void setRealPassValue(double realPassValue) {
this.realPassValue = realPassValue;
}
public String getPassExplain() {
return passExplain;
}
public void setPassExplain(String passExplain) {
this.passExplain = passExplain;
}
public double getSuperValue() {
return superValue;
}
public void setSuperValue(double superValue) {
this.superValue = superValue;
}
public double getRealSuperValue() {
return realSuperValue;
}
public void setRealSuperValue(double realSuperValue) {
this.realSuperValue = realSuperValue;
}
public String getSuperExplain() {
return superExplain;
}
public void setSuperExplain(String superExplain) {
this.superExplain = superExplain;
}
public double getFee() {
return fee;
}
public void setFee(double fee) {
this.fee = fee;
}
public int getBonusType() {
return bonusType;
}
public void setBonusType(int bonusType) {
this.bonusType = bonusType;
}
public double getBonusValue() {
return bonusValue;
}
public void setBonusValue(double bonusValue) {
this.bonusValue = bonusValue;
}
public double getRealBonusValue() {
return realBonusValue;
}
public void setRealBonusValue(double realBonusValue) {
this.realBonusValue = realBonusValue;
}
public String getBonusExlain() {
return bonusExlain;
}
public void setBonusExlain(String bonusExlain) {
this.bonusExlain = bonusExlain;
}
}
package com.pangding.web.authority.vo.reqvo;
import java.util.List;
public class CompanyDivideReqVo {
public String companyId;
private List<String> companyIdList;
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public List<String> getCompanyIdList() {
return companyIdList;
}
public void setCompanyIdList(List<String> companyIdList) {
this.companyIdList = companyIdList;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment