Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.user.domain;

public class Coupon {

        private long id;
        private String coupon_code;
//      private Promotion promotion_id;
        private String arguments;
        
        
        public long getId() {
                return id;
        }
        public void setId(long id) {
                this.id = id;
        }
        public String getCoupon_code() {
                return coupon_code;
        }
        public void setCoupon_code(String coupon_code) {
                this.coupon_code = coupon_code;
        }
//      public Promotion getPromotion_id() {
//              return promotion_id;
//      }
//      public void setPromotion_id(Promotion promotion_id) {
//              this.promotion_id = promotion_id;
//      }
        public String getArguments() {
                return arguments;
        }
        public void setArguments(String arguments) {
                this.arguments = arguments;
        }

        
}