using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Business
{
///
/// 会务采购物品
///
[SugarTable("Bus_ConfItem")]
public class Bus_ConfItemInfo : EntityBase
{
///
/// 物料编号
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int ItemId { get; set; }
///
/// 清单Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int ConfListId { get; set; }
///
/// 采购数量
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int Count { get; set; }
///
/// 规格
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Specs { get; set; }
///
/// 本次采购金额
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(9,2)")]
public decimal CurrCost { get; set; }
///
/// 操作备注
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]
public string OpRemark { get; set; }
}
}