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