package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @description 订单搜索表
|
* @author huarray
|
* @date 2019-06-27 18:15
|
*/
|
public class ShopOrderSearch extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 产品名称
|
*/
|
private String proName;
|
|
|
/**
|
* 产品分类
|
*/
|
private String proType;
|
|
/**
|
* 产品属性
|
*/
|
private String proAttrs;
|
|
/**
|
* 产品规格
|
*/
|
private String proSpecification;
|
|
/**
|
* 客户名称
|
*/
|
private String nickName;
|
|
|
/**
|
* 购买数量
|
*/
|
private Integer count;
|
|
|
/**
|
* 支付金额
|
*/
|
private Double orderMoney;
|
|
|
/**
|
* 订单编号
|
*/
|
private String orderNo;
|
|
|
/**
|
* 订单状态
|
*/
|
private String orderStatus;
|
|
/**
|
* 购买日期
|
*/
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date orderTime;
|
|
/**
|
* 开始日期
|
*/
|
private String orderBeginTime;
|
|
/**
|
* 结束日期
|
*/
|
private String orderEndTime;
|
private Long companyId;
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
public String getProName() {
|
return proName;
|
}
|
|
public void setProName(String proName) {
|
this.proName = proName;
|
}
|
|
public String getProType() {
|
return proType;
|
}
|
|
public void setProType(String proType) {
|
this.proType = proType;
|
}
|
|
public String getNickName() {
|
return nickName;
|
}
|
|
public void setNickName(String nickName) {
|
this.nickName = nickName;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Double getOrderMoney() {
|
return orderMoney;
|
}
|
|
public void setOrderMoney(Double orderMoney) {
|
this.orderMoney = orderMoney;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public String getOrderStatus() {
|
return orderStatus;
|
}
|
|
public void setOrderStatus(String orderStatus) {
|
this.orderStatus = orderStatus;
|
}
|
|
public Date getOrderTime() {
|
return orderTime;
|
}
|
|
public void setOrderTime(Date orderTime) {
|
this.orderTime = orderTime;
|
}
|
|
public String getOrderBeginTime() {
|
return orderBeginTime;
|
}
|
|
public void setOrderBeginTime(String orderBeginTime) {
|
this.orderBeginTime = orderBeginTime;
|
}
|
|
public String getOrderEndTime() {
|
return orderEndTime;
|
}
|
|
public void setOrderEndTime(String orderEndTime) {
|
this.orderEndTime = orderEndTime;
|
}
|
|
public String getProSpecification() {
|
return proSpecification;
|
}
|
|
public void setProSpecification(String proSpecification) {
|
this.proSpecification = proSpecification;
|
}
|
|
public String getProAttrs() {
|
return proAttrs;
|
}
|
|
public void setProAttrs(String proAttrs) {
|
this.proAttrs = proAttrs;
|
}
|
}
|