|
@@ -1,194 +0,0 @@
|
|
|
-package com.diagbot.entity;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.math.BigDecimal;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-/**
|
|
|
- * @Description: 订单明细实体类
|
|
|
- * @Author: wangyu
|
|
|
- * @Date: 15:40 2018/9/17
|
|
|
- */
|
|
|
-public class DiagOrderDetails implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单明细id
|
|
|
- */
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否删除,N:未删除,Y:删除
|
|
|
- */
|
|
|
- private String isDeleted;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
- private Date gmtCreate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
- */
|
|
|
- private Date gmtModified;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人,0表示无创建人值
|
|
|
- */
|
|
|
- private String creator;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人,如果为0则表示纪录未修改
|
|
|
- */
|
|
|
- private String modifier;
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单编号
|
|
|
- */
|
|
|
- private String orderNum;
|
|
|
-
|
|
|
- /**
|
|
|
- * 产品id
|
|
|
- */
|
|
|
- private Integer productId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 用户id
|
|
|
- */
|
|
|
- private Integer userId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否通过审核,N:未通过,Y:已通过
|
|
|
- */
|
|
|
- private String auditStatus;
|
|
|
-
|
|
|
- /**
|
|
|
- * 单个服务的价钱
|
|
|
- */
|
|
|
- private BigDecimal unitPrice;
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单状态 Y:已付款,N未付款
|
|
|
- */
|
|
|
- private String status;
|
|
|
-
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(Date gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(Date gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreator() {
|
|
|
- return creator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrderNum() {
|
|
|
- return orderNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNum(String orderNum) {
|
|
|
- this.orderNum = orderNum;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getProductId() {
|
|
|
- return productId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProductId(Integer productId) {
|
|
|
- this.productId = productId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Integer userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAuditStatus() {
|
|
|
- return auditStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAuditStatus(String auditStatus) {
|
|
|
- this.auditStatus = auditStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getUnitPrice() {
|
|
|
- return unitPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUnitPrice(BigDecimal unitPrice) {
|
|
|
- this.unitPrice = unitPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatus(String status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "DiagOrderDetails{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", orderNum=" + orderNum +
|
|
|
- ", productId=" + productId +
|
|
|
- ", userId=" + userId +
|
|
|
- ", auditStatus=" + auditStatus +
|
|
|
- ", unitPrice=" + unitPrice +
|
|
|
- ", status=" + status +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|