You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Core.DataBase
- {
- /// <summary>
- /// 配方商品属性关系
- /// </summary>
- [SugarTable("bpa_bomattributevaluere")]
- public class BPA_BomAttributeValueRe
- {
- public string Id { get; set; }
- public string GoodsId { get; set; }
- /// <summary>
- /// 配方id
- /// </summary>
- public string BoomId { get; set; }
- /// <summary>
- /// 商品属性值id
- /// </summary>
- public string GoodsAttributeValueId { get; set; }
- }
- }
|