using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Business
{
///
/// 会务物料采购总计
///
[SugarTable("Bus_ConfItemList")]
public class Bus_ConfItemListInfo : EntityBase
{
///
/// 团组(会议)编号
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int Diid { get; set; }
///
/// 总计成本
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal TotalCost { get; set; }
///
/// Excel文件路径
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(255)")]
public string ExcelPath { get; set; }
}
}