/**
 * Copyright (c) 2003-2005 System Integrator Corporation.
 *                 All Rights Reserved.
 */
package jp.co.sint.basic;
/**
 * @version $Id : SISpDiscount.java,v 1.0 Exp $
 * @author      : Tsuyoshi Yagi
 * <br>Description :特別値引に対するBean
 * <p>History</p>
 * <p>Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reason</p>
 * ============&nbsp;&nbsp;&nbsp;==========&nbsp;&nbsp;===========================<br>
 * Tsuyoshi Yagi   2005/10/03  Original
 */
public class SISpDicount extends SIBasic {
  
  //ショップコード
  private String shopCode = "";
  //特別値引フラグ
  private String spDiscountFlg = "";
  //個別金額
  private String condPrice1 = "";
  //小物金額
  private String condPrice2 = "";
  //送料フラグ
  private String deliveryFeeFlg = "";
  //値引率
  private String discountRatio = "";
  //登録日
  private String initDateTime = "";
  
  /*
   * getter of 個別金額.
   */
  public String getCondPrice1() {
    return condPrice1;
  }
  /*
   * setter of 個別金額
   */
  public void setCondPrice1(String condPrice1) {
    this.condPrice1 = condPrice1;
  }
  /*
   * getter of 小物金額
   */
  public String getCondPrice2() {
    return condPrice2;
  }
  /*
   * setter of 小物金額
   */
  public void setCondPrice2(String condPrice2) {
    this.condPrice2 = condPrice2;
  }
  /*
   * getter of 送料フラグ
   */
  public String getDeliveryFeeFlg() {
    return deliveryFeeFlg;
  }
  /*
   * setter of 送料フラグ
   */
  public void setDeliveryFeeFlg(String deliveryFeeFlg) {
    this.deliveryFeeFlg = deliveryFeeFlg;
  }
  /*
   * getter of 値引率
   */
  public String getDiscountRatio() {
    return discountRatio;
  }
  /*
   * setter of 値引率
   */
  public void setDiscountRatio(String discountRatio) {
    this.discountRatio = discountRatio;
  }
  /*
   * getter of 登録日
   */
  public String getInitDateTime() {
    return initDateTime;
  }
  /*
   * setter of 登録日
   */
  public void setInitDateTime(String initDateTime) {
    this.initDateTime = initDateTime;
  }
  /*
   * getter of ショップコード
   */
  public String getShopcode() {
    return shopCode;
  }
  /*
   * setter of ショップコード
   */
  public void setShopcode(String shopcode) {
    this.shopCode = shopcode;
  }
  /*
   * getter of 特別値引フラグ
   */
  public String getSpDiscountFlg() {
    return spDiscountFlg;
  }
  /*
   * setter of 特別値引フラグ
   */
  public void setSpDiscountFlg(String spDiscountFlg) {
    this.spDiscountFlg = spDiscountFlg;
  }
}
