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

articles_fields.cs 549B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace WebApiWebSem.DataAccess.Models
  6. {
  7. public partial class articles_fields
  8. {
  9. public string article_id { get; set; }
  10. public string property { get; set; }
  11. public string value { get; set; }
  12. public string type { get; set; }
  13. public virtual articles fk_articles { get; set; }
  14. }
  15. }