TemplateSettingModel.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.it.ocs.templateSetting.model;
  2. import com.it.ocs.common.model.BaseModel;
  3. public class TemplateSettingModel extends BaseModel {
  4. private String ebayAccount;
  5. private String carryTemplateUrl;
  6. private String topPromotionType;
  7. private String footerPromotionType;
  8. private String scaler;
  9. private String enablePageProtection;
  10. public String getEbayAccount() {
  11. return ebayAccount;
  12. }
  13. public void setEbayAccount(String ebayAccount) {
  14. this.ebayAccount = ebayAccount == null ? null : ebayAccount.trim();
  15. }
  16. public String getCarryTemplateUrl() {
  17. return carryTemplateUrl;
  18. }
  19. public void setCarryTemplateUrl(String carryTemplateUrl) {
  20. this.carryTemplateUrl = carryTemplateUrl == null ? null : carryTemplateUrl.trim();
  21. }
  22. public String getTopPromotionType() {
  23. return topPromotionType;
  24. }
  25. public void setTopPromotionType(String topPromotionType) {
  26. this.topPromotionType = topPromotionType == null ? null : topPromotionType.trim();
  27. }
  28. public String getFooterPromotionType() {
  29. return footerPromotionType;
  30. }
  31. public void setFooterPromotionType(String footerPromotionType) {
  32. this.footerPromotionType = footerPromotionType == null ? null : footerPromotionType.trim();
  33. }
  34. public String getScaler() {
  35. return scaler;
  36. }
  37. public void setScaler(String scaler) {
  38. this.scaler = scaler == null ? null : scaler.trim();
  39. }
  40. public String getEnablePageProtection() {
  41. return enablePageProtection;
  42. }
  43. public void setEnablePageProtection(String enablePageProtection) {
  44. this.enablePageProtection = enablePageProtection == null ? null : enablePageProtection.trim();
  45. }
  46. }