| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- package com.ydtech.modules.esm.model;
- import java.io.Serializable;
- public class EsmAgreementProd implements Serializable {
- private static final long serialVersionUID = 4715085681443607972L;
- private String id;
- private String agreeid;
- private String agreementcode;
- private String productid;
- private String feestyle;
- private String product;
- private String feetype;
- private double productrate;
- private String canprovince;
- private String cancity;
- private String canlicense;
- private String cancarkind;
- private String canusenature;
- private double keeprate;
- private double feerate;
- private String authcomcode;
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAgreeid() {
- return agreeid;
- }
- public void setAgreeid(String agreeid) {
- this.agreeid = agreeid;
- }
- public String getAgreementcode() {
- return agreementcode;
- }
- public void setAgreementcode(String agreementcode) {
- this.agreementcode = agreementcode;
- }
- public String getProductid() {
- return productid;
- }
- public void setProductid(String productid) {
- this.productid = productid;
- }
- public String getFeestyle() {
- return feestyle;
- }
- public void setFeestyle(String feestyle) {
- this.feestyle = feestyle;
- }
- public String getProduct() {
- return product;
- }
- public void setProduct(String product) {
- this.product = product;
- }
- public String getFeetype() {
- return feetype;
- }
- public void setFeetype(String feetype) {
- this.feetype = feetype;
- }
- public double getProductrate() {
- return productrate;
- }
- public void setProductrate(double productrate) {
- this.productrate = productrate;
- }
- public String getCanprovince() {
- return canprovince;
- }
- public void setCanprovince(String canprovince) {
- this.canprovince = canprovince;
- }
- public String getCancity() {
- return cancity;
- }
- public void setCancity(String cancity) {
- this.cancity = cancity;
- }
- public String getCanlicense() {
- return canlicense;
- }
- public void setCanlicense(String canlicense) {
- this.canlicense = canlicense;
- }
- public String getCancarkind() {
- return cancarkind;
- }
- public void setCancarkind(String cancarkind) {
- this.cancarkind = cancarkind;
- }
- public String getCanusenature() {
- return canusenature;
- }
- public void setCanusenature(String canusenature) {
- this.canusenature = canusenature;
- }
- public double getKeeprate() {
- return keeprate;
- }
- public void setKeeprate(double keeprate) {
- this.keeprate = keeprate;
- }
- public double getFeerate() {
- return feerate;
- }
- public void setFeerate(double feerate) {
- this.feerate = feerate;
- }
- public String getAuthcomcode() {
- return authcomcode;
- }
- public void setAuthcomcode(String authcomcode) {
- this.authcomcode = authcomcode;
- }
- }
|