namespace iWareSql { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; /// /// ´ÓMESϵͳ½Ó¹ýÀ´µÄÎïÁÏÊý¾Ý /// public partial class MesMatInfo { /// /// ´ó°å±àÂë /// public string MatID { get; set; } /// /// ´ó°åÃû³Æ /// public string MatName { get; set; } /// /// ³¤ /// public float Length { get; set; } /// /// ¿í /// public float Width { get; set; } /// /// ºñ /// public float Thick { get; set; } } }