//查询精品出库单
/sale/coGoodOutBill/list
已上架精品列表
/sale/veHighGoods/chooseGoodsList
{goodsFactory厂家 goodsName名称}
/sale/coGoodOutBill/add保存精品出库单
/sale/coGoodOutBill/findById id 查询详情
/sale/coGoodOutBill/delete id 删除
/** 精品总销售价 */
@Excel(name = "精品总销售价")
private BigDecimal goodTotalPrice;
/** 总利润 */
@Excel(name = "总利润")
private BigDecimal totalProfitsPrice;
/** 总成本价 */
@Excel(name = "总成本价")
private BigDecimal totalCostPrice;
/** 待收金额 */
@Excel(name = "待收金额")
private BigDecimal waitingPrice;
/** 已收金额 */
@Excel(name = "已收金额")
private BigDecimal receivedPrice;
/** 门店id */
@Excel(name = "门店id")
private Long shopId;
/** 出库单号 */
@Excel(name = "出库单号")
private String outBill;
/** 客户姓名 */
@Excel(name = "客户姓名")
private String customerName;
/** 客户手机 */
@Excel(name = "客户手机")
private String customerPhone;
/** 精品总金额 */
@Excel(name = "精品总金额")
private BigDecimal goodTotalPrice;
/** 精品总数量 */
@Excel(name = "精品总数量")
private Long goodTotalCount;
/** 出库人 */
@Excel(name = "出库人")
private Long saleUserId;
/** 状态1正常2作废 */
@Excel(name = "状态1正常2作废")
private String status;
/** 创建人 */
@Excel(name = "创建人")
private String createName;
/** 修改人 */
@Excel(name = "修改人")
private String updateName;
//精品列表
private List<CoGoodOutItem> goodOutItemList;
{
/** 精品id */
@Excel(name = "精品id")
private Long goodId;
/** 精品名称 */
@Excel(name = "精品名称")
private String goodsName;
/** 精品数量 */
@Excel(name = "精品数量")
private Long goodCount;
/** $column.columnComment */
@Excel(name = "精品数量")
private String goodsCode;
/** 厂家 */
@Excel(name = "厂家")
private String goodsFactory;
/** 品牌 */
@Excel(name = "品牌")
private String goodsBrank;
/** 单位 */
@Excel(name = "单位")
private String goodsUnit;
/** 销售价 */
@Excel(name = "销售价")
private BigDecimal goodsPrice;
/** 总价 */
@Excel(name = "总价")
private BigDecimal goodsTotalPrice;
}