| | |
| | | public string? F_BZGS { get; set; } //标准工时 |
| | | public string? F_FZMC { get; set; } //物料分组名称(类型名称) |
| | | public string? MJBM { get; set; } //模具编码(名称) |
| | | public string? KHWLBM { get; set; } //客户物料编码 |
| | | public string? YS { get; set; } //颜色 |
| | | public string? NEXT_GX { get; set; } //下道工序 |
| | | } |
| | |
| | | |
| | | <ItemGroup> |
| | | <Folder Include="Dto\webApi\SRM\" /> |
| | | <Folder Include="Dto\webApi\新文件夹\" /> |
| | | <Folder Include="Modes\SRM\" /> |
| | | <Folder Include="service\SRM\" /> |
| | | </ItemGroup> |
| | |
| | | [SugarColumn(ColumnName = "MJBM")] |
| | | public string? MJBM { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 客户物料编码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "KHWLBM")] |
| | | public string? KHWLBM { get; set; } |
| | | /// <summary> |
| | | /// 颜色 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "YS")] |
| | | public string? YS { get; set; } |
| | | /// <summary> |
| | | /// 下道工序 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "NEXT_GX")] |
| | | public string? Next_Gx { get; set; } |
| | | |
| | | } |
| | |
| | | F_BZGS =item.F_BZGS, |
| | | WLFZMC=item.F_FZMC, |
| | | MJBM =item.MJBM, |
| | | KHWLBM =item.KHWLBM, |
| | | YS=item.YS, |
| | | Next_Gx = item.NEXT_GX, |
| | | }; |
| | | } |
| | | |
| | |
| | | .Deleteable<MesRohInData>() |
| | | .Where(s => decimals.Contains(s.Id)) |
| | | .ExecuteCommand() > 0; |
| | | |
| | | if (update && insertOrUpdate) return true; |
| | | throw new NotImplementedException("更新失败"); |
| | | return true; |
| | | /* if (update && insertOrUpdate) return true; |
| | | throw new NotImplementedException("更新失败");*/ |
| | | } |
| | | |
| | | // 插入或更新数据的方法 |
| | |
| | | entity.Data = JsonConvert.SerializeObject(rohIn); |
| | | entity.Status = 1; |
| | | entity.CreateBy = "PL017"; |
| | | entity.Route= rohIn.ErpRohIn.FBillNo; |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |