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.
 

37 lines
663 B

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
}
}