| | |
| | | /// <summary> |
| | | /// SEQ_sales序列 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SALES_ORDER_DETAIL_ID", IsPrimaryKey = true)] |
| | | [SugarColumn(ColumnName = "ID", |
| | | OracleSequenceName = "SALES_ORDER_DETAIL_ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | public string? SalesOrder { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 客户订单号 |
| | | /// 客户订单号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CUST_ORDER")] |
| | | public string? CustOrder { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 销售合同编号 |
| | | /// 销售合同编号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SALES_CONTRACT_NO")] |
| | | public string? SalesContractNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 成品料号 |
| | | /// 成品料号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_NO")] |
| | | public string? ItemNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 成品名称 |
| | | /// 成品名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_NAME")] |
| | | public string? ItemName { get; set; } |
| | |
| | | public string? CustId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 采购到货日期 |
| | | /// 采购到货日期 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ARRIVAL_DATE")] |
| | | |
| | |
| | | public string? Ddly { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 行号 |
| | | /// 行号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FLINE_NO", IsNullable = true)] |
| | | public string? FLineNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 行状态 |
| | | /// 行状态 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FLINE_STATUS", IsNullable = true)] |
| | | public string? FLineStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 扩展字段 |
| | | /// 扩展字段 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FEXTEND_FIELD", IsNullable = true)] |
| | | public string? FExtendField { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 客户 |
| | | /// 客户 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FCUSTOMER", IsNullable = true)] |
| | | public string? FCustomer { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收货位置 |
| | | /// 收货位置 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FRECEIVE_LOCATION", IsNullable = true)] |
| | | public string? FReceiveLocation { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 供应组织 |
| | | /// 供应组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FSUPPLY_ORG", IsNullable = true)] |
| | | public string? FSupplyOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 部门 |
| | | /// 部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FDEPARTMENT", IsNullable = true)] |
| | | public string? FDepartment { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 业务员 |
| | | /// 业务员 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FSALES_PERSON", IsNullable = true)] |
| | | public string? FSalesPerson { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 项目 |
| | | /// 项目 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FPROJECT", IsNullable = true)] |
| | | public string? FProject { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需求分类 |
| | | /// 需求分类 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FDEMAND_CATEGORY", IsNullable = true)] |
| | | public string? FDemandCategory { get; set; } |
| | | |
| | | } |