您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

fk_pk_guids.cs 480B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace TestUtils.DataAccess.Models
  6. {
  7. public partial class fk_pk_guids
  8. {
  9. public Guid id { get; set; }
  10. public string name { get; set; }
  11. public Guid? pk_guid_id { get; set; }
  12. public virtual pk_guid fk_pk_guid { get; set; }
  13. }
  14. }