using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Core.DataBase
{
///
/// 配方商品属性关系
///
[SugarTable("bpa_bomattributevaluere")]
public class BPA_BomAttributeValueRe:IGroupId
{
[SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)]
public string Id { get; set; }
public string GoodsId { get; set; }
///
/// 配方id
///
public string BoomId { get; set; }
///
/// 商品属性值id
///
public string GoodsAttributeValueId { get; set; }
///
/// 商品属性值
///
public string GoodsAttributeValue { get; set; }
public string GroupId { get; set; }
}
}