瀏覽代碼

提交

master
gwbvipvip 9 月之前
父節點
當前提交
12e3400693
共有 9 個檔案被更改,包括 12 行新增1 行删除
  1. 二進制
     
  2. 二進制
     
  3. 二進制
     
  4. 二進制
     
  5. 二進制
     
  6. +1
    -0
      BPA.KitChen.GroupMeal.Application/Service/AExternalPlatform/Service/DiningPlateService/Service/DiningPlateService.cs
  7. +2
    -0
      BPA.KitChen.GroupMeal.Application/Service/OneCard/DiningPlate/Dtos/DiningPlateDto.cs
  8. +2
    -0
      BPA.KitChen.GroupMeal.Application/Service/OneCard/DiningPlate/Service/DiningPlateService.cs
  9. +7
    -1
      BPA.KitChen.GroupMeal.Core/Entity/BPA_DiningPlate.cs

二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


+ 1
- 0
BPA.KitChen.GroupMeal.Application/Service/AExternalPlatform/Service/DiningPlateService/Service/DiningPlateService.cs 查看文件

@@ -135,6 +135,7 @@ namespace BPA.KitChen.GroupMeal.Application.Service.AExternalPlatform.Service.Di
ChipCode = inputDto.ChipCode,
GroupId = CurrentUser.TenantId,
QRCode = inputDto.QRCode,
IsPay=inputDto.IsPay,
Status = CommonStatus.ENABLE,
}).ExecuteCommandAsync();
}


+ 2
- 0
BPA.KitChen.GroupMeal.Application/Service/OneCard/DiningPlate/Dtos/DiningPlateDto.cs 查看文件

@@ -35,6 +35,8 @@ namespace BPA.KitChen.GroupMeal.Application.Service.OneCard.DiningPlate.Dtos
/// </summary>
public string ChipCode { get; set; }

public bool IsPay { get; set; }

}

public class DiningPlatePageIndexDto : PageInputBase


+ 2
- 0
BPA.KitChen.GroupMeal.Application/Service/OneCard/DiningPlate/Service/DiningPlateService.cs 查看文件

@@ -156,6 +156,7 @@ namespace BPA.KitChen.GroupMeal.Application.Service.OneCard.DiningPlate.Service
ChipCode = inputDto.ChipCode,
QRCode = inputDto.QRCode,
Status = CommonStatus.ENABLE,
IsPay=inputDto.IsPay,
};
var res=await db.Insertable(data).ExecuteCommandAsync();

@@ -189,6 +190,7 @@ namespace BPA.KitChen.GroupMeal.Application.Service.OneCard.DiningPlate.Service

data2.ChipCode = inputDto.ChipCode;
data2.QRCode = inputDto.QRCode;
data2.IsPay = inputDto.IsPay;
var res = await db.Updateable(data2).ExecuteCommandAsync();
return res > 0;
}


+ 7
- 1
BPA.KitChen.GroupMeal.Core/Entity/BPA_DiningPlate.cs 查看文件

@@ -26,6 +26,12 @@ namespace BPA.KitChen.GroupMeal.Core.Entity
/// </summary>
public string ChipCode { get; set; }


/// <summary>
/// 是否付费餐盘
/// </summary>
public bool IsPay { get; set; }


}
}

Loading…
取消
儲存