T_Logic_AllotCard.cs 887 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. namespace JSWX_Model.SignUp
  8. {
  9. [Table("T_Logic_AllotCard")]
  10. public class T_Logic_AllotCard
  11. {
  12. [Key]
  13. public int aid { get; set; }
  14. public string dwbm { get; set; }
  15. public string dwmc { get; set; }
  16. public string ph { get; set; }
  17. public long AllotDate { get; set; }
  18. public string cardstatus { get; set; }
  19. public string childid { get; set; }
  20. public string eng { get; set; }
  21. }
  22. [Table("T_Logic_Engineer")]
  23. public class T_Logic_Engineer
  24. {
  25. [Key]
  26. public string OpenID { get; set; }
  27. public string engineerName { get; set; }
  28. public string engineerID { get; set; }
  29. }
  30. }