终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

23 lignes
481 B

  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. }