package com.goafanti.common.model; import java.math.BigDecimal; import java.util.Date; public class TOrderDetail { /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private String id; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.order_no * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private Long orderNo; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private String commodityId; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_name * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private String commodityName; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_quantity * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private Integer commodityQuantity; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private BigDecimal commodityPrice; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_type * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private Integer commodityType; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_mode * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private String commodityMode; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.discount_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private BigDecimal discountPrice; /** * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.create_time * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ private Date createTime; /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.id * @return the value of t_order_detail.id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.id * @param id the value for t_order_detail.id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setId(String id) { this.id = id; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.order_no * @return the value of t_order_detail.order_no * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public Long getOrderNo() { return orderNo; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.order_no * @param orderNo the value for t_order_detail.order_no * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setOrderNo(Long orderNo) { this.orderNo = orderNo; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_id * @return the value of t_order_detail.commodity_id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public String getCommodityId() { return commodityId; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_id * @param commodityId the value for t_order_detail.commodity_id * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityId(String commodityId) { this.commodityId = commodityId; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_name * @return the value of t_order_detail.commodity_name * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public String getCommodityName() { return commodityName; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_name * @param commodityName the value for t_order_detail.commodity_name * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityName(String commodityName) { this.commodityName = commodityName; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_quantity * @return the value of t_order_detail.commodity_quantity * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public Integer getCommodityQuantity() { return commodityQuantity; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_quantity * @param commodityQuantity the value for t_order_detail.commodity_quantity * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityQuantity(Integer commodityQuantity) { this.commodityQuantity = commodityQuantity; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_price * @return the value of t_order_detail.commodity_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public BigDecimal getCommodityPrice() { return commodityPrice; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_price * @param commodityPrice the value for t_order_detail.commodity_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityPrice(BigDecimal commodityPrice) { this.commodityPrice = commodityPrice; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_type * @return the value of t_order_detail.commodity_type * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public Integer getCommodityType() { return commodityType; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_type * @param commodityType the value for t_order_detail.commodity_type * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityType(Integer commodityType) { this.commodityType = commodityType; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_mode * @return the value of t_order_detail.commodity_mode * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public String getCommodityMode() { return commodityMode; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_mode * @param commodityMode the value for t_order_detail.commodity_mode * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCommodityMode(String commodityMode) { this.commodityMode = commodityMode; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.discount_price * @return the value of t_order_detail.discount_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public BigDecimal getDiscountPrice() { return discountPrice; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.discount_price * @param discountPrice the value for t_order_detail.discount_price * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setDiscountPrice(BigDecimal discountPrice) { this.discountPrice = discountPrice; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.create_time * @return the value of t_order_detail.create_time * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.create_time * @param createTime the value for t_order_detail.create_time * @mbg.generated Wed Jan 10 13:43:11 CST 2018 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } }