package com.matrix.system.hive.pojo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.tools.DateUtil;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 库存出入库明细
|
* @author JYY
|
*/
|
public class StoreInOutRecordVO {
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
|
private Date createTime;
|
/**
|
* 产品编码
|
*/
|
private String code;
|
|
/**
|
* 商品名称
|
*/
|
private String name;
|
/**
|
*商品分类名称
|
*/
|
private String typeName;
|
/**
|
*出入库数量
|
*/
|
private Double amount;
|
/**
|
* 出库价格
|
*/
|
private Double goodsPrice;
|
/**
|
* 总金额
|
*/
|
private Double totalPrice;
|
/**
|
* 单据编号
|
*/
|
private String orderNo;
|
/**
|
* 单据类型
|
*/
|
private String orderType;
|
/**
|
* 库存批次
|
*/
|
private String batch;
|
/**
|
* 操作人
|
*/
|
private String userName;
|
|
/**
|
* 店铺名称
|
*/
|
private String shopName;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 用于对查询的参数
|
*/
|
@DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM)
|
private Date beginTime;
|
|
@DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM)
|
private Date endTime;
|
|
private Long shopId;
|
|
private Long companyId;
|
|
private Long userId;
|
|
|
private Long goodsSortId;
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
|
public Double getAmount() {
|
return amount;
|
}
|
|
public void setAmount(Double amount) {
|
this.amount = amount;
|
}
|
|
public Double getGoodsPrice() {
|
return goodsPrice;
|
}
|
|
public void setGoodsPrice(Double goodsPrice) {
|
this.goodsPrice = goodsPrice;
|
}
|
|
public Double getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(Double totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public String getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(String orderType) {
|
this.orderType = orderType;
|
}
|
|
public String getBatch() {
|
return batch;
|
}
|
|
public void setBatch(String batch) {
|
this.batch = batch;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getShopName() {
|
return shopName;
|
}
|
|
public void setShopName(String shopName) {
|
this.shopName = shopName;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public Date getBeginTime() {
|
return beginTime;
|
}
|
|
public void setBeginTime(Date beginTime) {
|
this.beginTime = beginTime;
|
}
|
|
public Long getGoodsSortId() {
|
return goodsSortId;
|
}
|
|
public void setGoodsSortId(Long goodsSortId) {
|
this.goodsSortId = goodsSortId;
|
}
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
}
|