using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
    /// 
    /// 保险国家基础费用
    /// 
    [SugarTable("Res_BasicInsuranceCost")]
    public class Res_BasicInsuranceCost : EntityBase
    {
        /// 
        /// 申根国(0 否 1 是)
        /// 
        [SugarColumn(ColumnDescription = "申根国(0 否 1 是)", IsNullable = false, ColumnDataType = "int", DefaultValue = "0")]
        public int IsSchengen { get; set; }
        /// 
        /// 国家名称
        /// 
        [SugarColumn(ColumnDescription = "国家名称", IsNullable = false, ColumnDataType = "varchar(100)")]
        public string CountryName { get; set; }
        /// 
        /// 保险费用
        /// 
        [SugarColumn(ColumnDescription = "保险费用", IsNullable = false, ColumnDataType = "decimal(10,2)", DefaultValue = "0.00")]
        public decimal Cost { get; set; }
    }
}