标签:log class blog mod ring ace cti span team
模型类
Total类:
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace MvcVolleyball.Models { public class Total { public int ID { get; set; }//id public string teamA { get; set; }//主队名 public string teamB { get; set; }//客队名 public string GFirst { get; set; }//第一局比分 public string GSecond { get; set; }//第二局比分 public string GThird { get; set; }//第三局比分 public string GFourth { get; set; }//第四局比分 public string GFifth { get; set; }//第五局比分 public string GSum { get; set; } //总比分 }
volleyball类:
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace MvcVolleyball.Models { public class volleyball { public int ID { get; set; }//id public string teamA { get; set; }//主队得分 public string teamA { get; set; }//客队得分 public string nameA { get; set; }//主队名字 public string nameB { get; set; }//客队名字 }
标签:log class blog mod ring ace cti span team
原文地址:http://www.cnblogs.com/ghf1/p/7067894.html