using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace Txgy.EWS.Server.Models { /// /// 车辆颜色 /// [Table("base_auto_color")] public class AutoColor { [Key] [Column("color_id")] public int ColorId { get; set; } [Column("color_name")] public string ColorName { get; set; } } }