using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Domain.Entities.Resource
{
    /// <summary>
    /// 保险国家基础费用
    /// </summary>
    [SugarTable("Res_BasicInsuranceCost")]
    public class Res_BasicInsuranceCost : EntityBase
    {
        /// <summary>
        /// 申根国(0 否 1 是)
        /// </summary>
        [SugarColumn(ColumnDescription = "申根国(0 否 1 是)", IsNullable = false, ColumnDataType = "int", DefaultValue = "0")]
        public int IsSchengen { get; set; }

        /// <summary>
        /// 国家名称
        /// </summary>
        [SugarColumn(ColumnDescription = "国家名称", IsNullable = false, ColumnDataType = "varchar(100)")]
        public string CountryName { get; set; }

        /// <summary>
        /// 保险费用
        /// </summary>
        [SugarColumn(ColumnDescription = "保险费用", IsNullable = false, ColumnDataType = "decimal(10,2)", DefaultValue = "0.00")]
        public decimal Cost { get; set; }

    }
}