You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
500 B
C#

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