终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

RecipeCompleteLog.cs 481 B

před 1 rokem
před 1 rokem
před 1 rokem
před 1 rokem
12345678910111213141516171819202122
  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.CustomResource.Pages.Model
  9. {
  10. public class RecipeCompleteLog : NotifyBase
  11. {
  12. [Key]
  13. public int Id { get; set; }
  14. public string Date { get; set; }
  15. public string Time { get; set; }
  16. public string RecipeName { get; set; }
  17. }
  18. }