123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 实体
- * 表名 mall_freight
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2018-10-22 17:20:31
- */
- public class FreightEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- private Integer id;
- /**
- * 模版名称
- */
- private String name;
- /**
- * 模版类型:0,买家承担运费;1,卖家包邮
- */
- private String templateType;
- /**
- * 计价方式:0,按件数;1,按重量;2,按体积
- */
- private String pricingManner;
- /**
- * 默认模版:0,否;1,是
- */
- private String isDefault;
- private BigDecimal defaultFreight;//运费
- public BigDecimal getDefaultFreight() {
- return defaultFreight;
- }
- public void setDefaultFreight(BigDecimal defaultFreight) {
- this.defaultFreight = defaultFreight;
- }
- /**
- * 设置:主键
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:主键
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:模版名称
- */
- public void setName(String name) {
- this.name = name;
- }
- /**
- * 获取:模版名称
- */
- public String getName() {
- return name;
- }
- /**
- * 设置:模版类型:0,买家承担运费;1,卖家包邮
- */
- public void setTemplateType(String templateType) {
- this.templateType = templateType;
- }
- /**
- * 获取:模版类型:0,买家承担运费;1,卖家包邮
- */
- public String getTemplateType() {
- return templateType;
- }
- /**
- * 设置:计价方式:0,按件数;1,按重量;2,按体积
- */
- public void setPricingManner(String pricingManner) {
- this.pricingManner = pricingManner;
- }
- /**
- * 获取:计价方式:0,按件数;1,按重量;2,按体积
- */
- public String getPricingManner() {
- return pricingManner;
- }
- /**
- * 设置:默认模版:0,否;1,是
- */
- public void setIsDefault(String isDefault) {
- this.isDefault = isDefault;
- }
- /**
- * 获取:默认模版:0,否;1,是
- */
- public String getIsDefault() {
- return isDefault;
- }
- }
|