using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace LearningOfficer.OA.Core.Entities.OA.PointsGoods
{
///
/// 商品文件关联
///
[SugarTable("points_goods_files")]
public class PointsGoodsFiles : BaseEntity
{
///
/// 备 注:商品id
/// 默认值:
///
[SugarColumn(ColumnName="goods_id" ) ]
public long GoodsId { get; set; }
///
/// 备 注:文件id
/// 默认值:
///
[SugarColumn(ColumnName="file_id" ) ]
public long FileId { get; set; }
}
}