package com.vincent.rsf.openApi.entity.app; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.experimental.Accessors; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; @Data @Accessors(chain = true) @TableName("open_api_order") public class OpenApiOrder implements Serializable { @TableId(value = "id", type = IdType.AUTO) private Long id; private String code; @TableField("po_code") private String poCode; @TableField("po_id") private Long poId; private String type; @TableField("wk_type") private String wkType; private BigDecimal anfme; private BigDecimal qty; @TableField("work_qty") private BigDecimal workQty; @TableField("exce_status") private Integer exceStatus; private Integer status; @TableField("business_time") private Date businessTime; @TableField("order_internal_code") private String orderInternalCode; @TableField("station_id") private String stationId; @TableField("stock_direct") private String stockDirect; @TableField("customer_id") private String customerId; @TableField("customer_name") private String customerName; @TableField("supplier_id") private String supplierId; @TableField("supplier_name") private String supplierName; @TableField("stock_org_id") private String stockOrgId; @TableField("stock_org_name") private String stockOrgName; @TableField("purchase_org_id") private String purchaseOrgId; @TableField("purchase_org_name") private String purchaseOrgName; @TableField("purchase_user_id") private String purchaseUserId; @TableField("purchase_user_name") private String purchaseUserName; @TableField("prd_org_id") private String prdOrgId; @TableField("prd_org_name") private String prdOrgName; @TableField("sale_org_id") private String saleOrgId; @TableField("sale_org_name") private String saleOrgName; @TableField("sale_user_id") private String saleUserId; @TableField("sale_user_name") private String saleUserName; @TableField("create_time") private Date createTime; @TableField("update_time") private Date updateTime; }