| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- 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;
- }
- }
|