package com.zy.common.service.erp.entity; import com.baomidou.mybatisplus.annotations.TableName; import lombok.Data; /* ERP中库存比对视图 */ @Data @TableName("wlzh_v_st_rd") public class WlzhVStRd { //核算主体 private String account; //仓库 private String cWhName; //存货编码 private String cinvcode; //规格型号 private String cinvstd; //计量单位 private String cComUnitName; //通用型号 private String cinvdefine4; //现存量 private Double iquantity; //销售订单号 private String csocode; //销售订单行号 private String isoseq; }