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
506 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_fee_model")]
public class FeeModel
{
[Key]
[Column("fee_model_id")]
public int FeeModelId { get; set; }
[Column("fee_model_name")]
public string FeeModelName { get; set; }
}
}