using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class BomSet_Detail:Base
|
|
{
|
|
public override string TableName
|
|
{
|
|
get { return TableNames.BOM清单; }
|
|
}
|
|
|
|
public long BomSet_ID { get; set; }
|
|
|
|
public long BomSet_Detail_ID { get; set; }
|
|
|
|
public decimal? Number { get; set; }
|
|
|
|
public long? Goods_ID { get; set; }
|
|
|
|
public InputStyle? InputStyle { get; set; }
|
|
|
|
public decimal? UnitPrecent { get; set; }
|
|
|
|
public decimal? FixedNumber { get; set; }
|
|
}
|
|
|
|
public enum InputStyle
|
|
{
|
|
料包 = 1,
|
|
直接 = 2
|
|
}
|
|
|
|
}
|