package com.matrix.system.hive.pojo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.matrix.core.tools.DateUtil;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 库存出入库明细
|
* @author JYY
|
*/
|
@Data
|
public class StoreInOutRecordVO {
|
|
/**
|
* 服务单id
|
*/
|
private Long serviceId;
|
|
/**
|
* 订单id
|
*/
|
private Long orderId;
|
|
@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 sourceOrderNo;
|
/**
|
* 客户姓名
|
*/
|
private String vipName;
|
|
/**
|
* 单据类型
|
*/
|
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;
|
|
private Long id;
|
|
|
}
|