using Business.Core.Attributes;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
namespace Business.Domain
{
///
/// 物料
///
[CollectionName("dopbase", "in_kd_material")]
[Comment("物料")]
public class in_kd_material : Entity
{
///
/// 创建组织
///
[StringLength(80)]
[Comment("创建组织")]
public string FCreateOrgId_Name { get; set; }
///
/// 使用组织
///
[StringLength(80)]
[Comment("使用组织")]
public string FUseOrgId_Name { get; set; }
///
/// 编码
///
[StringLength(80)]
[Comment("编码")]
public string FNumber { get; set; }
///
/// 物料来源
///
[StringLength(10)]
[Comment("物料来源")]
public string FDataSource { get; set; }
///
/// 名称
///
[StringLength(80)]
[Comment("名称")]
public string FName_2052 { get; set; }
///
/// 规格型号
///
[StringLength(255)]
[Comment("规格型号")]
public string FSpecification_2052 { get; set; }
///
/// 助记码
///
[StringLength(80)]
[Comment("助记码")]
public string FMnemonicCode { get; set; }
///
/// 旧物料编码
///
[StringLength(80)]
[Comment("旧物料编码")]
public string FOldNumber { get; set; }
///
/// 描述
///
[StringLength(255)]
[Comment("描述")]
public string FDescription_2052 { get; set; }
///
/// 物料分组
///
[StringLength(80)]
[Comment("物料分组")]
public string FMaterialGroup_Name { get; set; }
///
/// 物料分组编码
///
[StringLength(80)]
[Comment("物料分组编码")]
public string FMaterialGroup { get; set; }
///
/// 数据状态
///
[Comment("数据状态")]
[StringLength(255)]
public string FUseStatus { get; set; }
///
/// 禁用状态
///
[Comment("禁用状态")]
[StringLength(10)]
public string FForbidStatus { get; set; }
///
/// 创建人
///
[StringLength(80)]
[Comment("创建人")]
public string FCreatorId_Name { get; set; }
///
/// 创建日期
///
[Comment("创建日期")]
public DateTime? FCreateDate { get; set; }
///
/// 修改人
///
[Comment("修改人")]
[StringLength(80)]
public string FModifierId_Name { get; set; }
///
/// 修改日期
///
[Comment("修改日期")]
public DateTime? FModifyDate { get; set; }
///
/// 审核人
///
[StringLength(80)]
[Comment("审核人")]
public string FApproverId_Name { get; set; }
///
/// 审核日期
[Comment("审核日期")]
public DateTime? FApproveDate { get; set; }
///
/// 禁用人
///
[Comment("禁用人")]
[StringLength(80)]
public string FForbidderId_Name { get; set; }
///
/// 禁用日期
///
[Comment("禁用日期")]
public DateTime? FForbidDate { get; set; }
///
/// 物料属性
///
[StringLength(80)]
[Comment("物料属性")]
public string FErpClsID { get; set; }
///
/// 存货类别
///
[Comment("存货类别")]
[StringLength(80)]
public string FCategoryID_Name { get; set; }
///
/// 税分类
///
[Comment("税分类")]
[StringLength(80)]
public string FTaxType_Name { get; set; }
///
/// 默认税率
///
[Comment("默认税率")]
[StringLength(80)]
public string FTaxRateId_Name { get; set; }
///
/// 基本单位
///
[StringLength(80)]
[Comment("基本单位")]
public string FBaseUnitId_Name { get; set; }
///
/// 允许采购
///
[Comment("允许采购")]
[StringLength(1)]
public string FIsPurchase { get; set; }
///
/// 允许库存
///
[StringLength(1)]
[Comment("允许库存")]
public string FIsInventory { get; set; }
///
/// 允许委外
///
[Comment("允许委外")]
[StringLength(1)]
public string FIsSubContract { get; set; }
///
/// 允许销售
///
[Comment("允许销售")]
[StringLength(1)]
public string FIsSale { get; set; }
///
/// FIsProduce
///
[Comment("FIsProduce")]
[StringLength(1)]
public string FIsProduce { get; set; }
///
/// 允许资产
///
[Comment("允许资产")]
[StringLength(1)]
public string FIsAsset { get; set; }
///
/// 条码
///
[Comment("条码")]
[StringLength(80)]
public string FBARCODE { get; set; }
///
/// 毛重
///
[Precision(23, 10)]
[Comment("毛重")]
public decimal? FGROSSWEIGHT { get; set; }
///
/// 净重
///
[Comment("净重")]
[Precision(23, 10)]
public decimal? FNETWEIGHT { get; set; }
///
/// 尺寸单位
///
[Comment("尺寸单位")]
[StringLength(10)]
public string FVOLUMEUNITID_Name { get; set; }
///
/// 长
///
[Comment("长")]
[Precision(23, 10)]
public decimal? FLENGTH { get; set; }
///
/// 宽
///
[Comment("宽")]
[Precision(23, 10)]
public decimal? FWIDTH { get; set; }
///
/// 高
///
[Comment("高")]
[Precision(23, 10)]
public decimal? FHEIGHT { get; set; }
///
/// 重量单位
///
[Comment("重量单位")]
[StringLength(10)]
public string FWEIGHTUNITID_Name { get; set; }
///
/// 体积
///
[Precision(23, 10)]
[Comment("体积")]
public decimal? FVOLUME { get; set; }
///
/// 库存单位
///
[Comment("库存单位")]
[StringLength(10)]
public string FStoreUnitID_Name { get; set; }
///
/// 辅助单位
///
[Comment("辅助单位")]
[StringLength(10)]
public string FAuxUnitID_Name { get; set; }
///
/// 仓库
///
[Comment("仓库")]
[StringLength(80)]
public string FStockId_Name { get; set; }
///
/// 仓位
///
[Comment("仓位")]
[StringLength(80)]
public string FStockLoc { get; set; }
///
/// 仓位.客户.编码
///
[Comment("仓位.客户.编码")]
[StringLength(80)]
public string FStockPlaceId_FF100002 { get; set; }
///
/// 仓位.客户.名称
///
[Comment("仓位.客户.名称")]
[StringLength(80)]
public string FStockPlaceId_FF100002_Name { get; set; }
///
/// 仓位.供应商.编码
///
[StringLength(80)]
[Comment("仓位.供应商.编码")]
public string FStockPlaceId_FF100003 { get; set; }
///
/// 仓位.客户.编码
///
[Comment("仓位.供应商.名称")]
[StringLength(80)]
public string FStockPlaceId_FF100003_Name { get; set; }
///
/// 仓位.服务机客户.编码
///
[Comment("仓位.服务机客户.编码")]
[StringLength(80)]
public string FStockPlaceId_FF100004 { get; set; }
///
/// 仓位.服务机客户.名称
///
[Comment("仓位.服务机客户.名称")]
[StringLength(80)]
public string FStockPlaceId_FF100004_Name { get; set; }
///
/// 可锁库
///
[StringLength(1)]
[Comment("可锁库")]
public string FIsLockStock { get; set; }
///
/// 启用盘点周期
///
[Comment("启用盘点周期")]
[StringLength(1)]
public string FIsCycleCounting { get; set; }
///
/// 盘点周期单位
///
[StringLength(10)]
[Comment("盘点周期单位")]
public string FCountCycle { get; set; }
///
/// 盘点周期
///
[Precision(23, 10)]
[Comment("盘点周期")]
public decimal? FCountDay { get; set; }
///
/// 必盘
///
[Comment("必盘")]
[StringLength(1)]
public string FIsMustCounting { get; set; }
///
/// 启用批号管理
///
[StringLength(1)]
[Comment("启用批号管理")]
public string FIsBatchManage { get; set; }
///
/// 批号编码规则
///
[StringLength(80)]
[Comment("批号编码规则")]
public string FBatchRuleID_Name { get; set; }
///
/// 启用保质期管理
///
[Comment("启用保质期管理")]
[StringLength(1)]
public string FIsKFPeriod { get; set; }
///
/// 批号附属信息
///
[StringLength(1)]
[Comment("批号附属信息")]
public string FIsExpParToFlot { get; set; }
///
/// 保质期单位
///
[StringLength(10)]
[Comment("保质期单位")]
public string FExpUnit { get; set; }
///
/// 保质期
///
[Comment("保质期")]
[Precision(23, 10)]
public decimal? FExpPeriod { get; set; }
///
/// 在架寿命期
///
[Precision(23, 10)]
[Comment("在架寿命期")]
public decimal? FOnlineLife { get; set; }
///
/// 参考成本
///
[Precision(23, 10)]
[Comment("参考成本")]
public decimal? FRefCost { get; set; }
///
/// 币别
///
[Comment("币别")]
[StringLength(80)]
public string FCurrencyId_Name { get; set; }
///
/// 库存管理
///
[StringLength(1)]
[Comment("库存管理")]
public string FIsSNManage { get; set; }
///
/// 启用最小库存
///
[StringLength(1)]
[Comment("启用最小库存")]
public string FIsEnableMinStock { get; set; }
///
/// 启用安全库存
///
[StringLength(1)]
[Comment("启用安全库存")]
public string FIsEnableSafeStock { get; set; }
///
/// 序列号编码规则
///
[StringLength(80)]
[Comment("序列号编码规则")]
public string FSNCodeRule_Name { get; set; }
///
/// 启用再订货点
///
[StringLength(1)]
[Comment("启用再订货点")]
public string FIsEnableReOrder { get; set; }
///
/// 启用最大库存
///
[StringLength(1)]
[Comment("启用最大库存")]
public string FIsEnableMaxStock { get; set; }
///
/// 序列号单位
///
[StringLength(10)]
[Comment("序列号单位")]
public string FSNUnit_Name { get; set; }
///
/// 最小库存
///
[Precision(23, 10)]
[Comment("最小库存")]
public decimal? FMinStock { get; set; }
///
/// 安全库存
///
[Precision(23, 10)]
[Comment("安全库存")]
public decimal? FSafeStock { get; set; }
///
/// 再订货点
///
[Precision(23, 10)]
[Comment("再订货点")]
public decimal? FReOrderGood { get; set; }
///
/// 经济订货批量
///
[Precision(23, 10)]
[Comment("经济订货批量")]
public decimal? FEconReOrderQty { get; set; }
///
/// 最大库存
///
[Precision(23, 10)]
[Comment("最大库存")]
public decimal? FMaxStock { get; set; }
///
/// 销售单位
///
[StringLength(10)]
[Comment("销售单位")]
public string FSaleUnitId_Name { get; set; }
///
/// 销售计价单位
///
[StringLength(10)]
[Comment("销售计价单位")]
public string FSalePriceUnitId_Name { get; set; }
///
/// 起订量
///
[Precision(20, 10)]
[Comment("起订量")]
public decimal? FOrderQty { get; set; }
///
/// 超发上限(%)
///
[Precision(23, 10)]
[Comment("超发上限(%)")]
public decimal? FOutStockLmtH { get; set; }
///
/// 超发下限(%)
///
[Precision(23, 10)]
[Comment("超发下限(%)")]
public decimal? FOutStockLmtL { get; set; }
///
/// 代理销售减价比例(%)
///
[Precision(23, 10)]
[Comment("代理销售减价比例(%)")]
public decimal? FAgentSalReduceRate { get; set; }
///
/// ATP检查
///
[StringLength(1)]
[Comment("ATP检查")]
public string FIsATPCheck { get; set; }
///
/// 允许退货
///
[StringLength(1)]
[Comment("允许退货")]
public string FIsReturn { get; set; }
///
/// 部件可退
///
[StringLength(1)]
[Comment("部件可退")]
public string FIsReturnPart { get; set; }
///
/// 允许发布到订货平台
///
[StringLength(1)]
[Comment("允许发布到订货平台")]
public string FAllowPublish { get; set; }
///
/// 启用售后服务
///
[StringLength(1)]
[Comment("启用售后服务")]
public string FISAFTERSALE { get; set; }
///
/// 生成产品档案
///
[StringLength(1)]
[Comment("生成产品档案")]
public string FISPRODUCTFILES { get; set; }
///
/// 是否保修
///
[StringLength(1)]
[Comment("是否保修")]
public string FISWARRANTED { get; set; }
///
/// 保修期单位
///
[StringLength(10)]
[Comment("保修期单位")]
public string FWARRANTYUNITID { get; set; }
///
/// 采购单位
///
[StringLength(10)]
[Comment("采购单位")]
public string FPurchaseUnitId_Name { get; set; }
///
/// 采购计价单位
///
[StringLength(10)]
[Comment("采购计价单位")]
public string FPurchasePriceUnitId_Name { get; set; }
///
/// 采购组
///
[StringLength(80)]
[Comment("采购组")]
public string FPurchaseGroupId_Name { get; set; }
///
/// 采购员
///
[StringLength(80)]
[Comment("采购员")]
public string FPurchaserId_Name { get; set; }
///
/// 配额管理
///
[StringLength(1)]
[Comment("配额管理")]
public string FIsQuota { get; set; }
///
/// 配额方式
///
[StringLength(80)]
[Comment("配额方式")]
public string FQuotaType { get; set; }
///
/// 最小拆分数量
///
[Precision(23, 10)]
[Comment("最小拆分数量")]
public decimal? FMinSplitQty { get; set; }
///
/// VMI业务
///
[StringLength(1)]
[Comment("VMI业务")]
public string FIsVmiBusiness { get; set; }
///
/// 默认供应商
///
[StringLength(80)]
[Comment("默认供应商")]
public string FDefaultVendor_Name { get; set; }
///
/// 费用项目
///
[StringLength(80)]
[Comment("费用项目")]
public string FChargeID_Name { get; set; }
///
/// 货源控制
///
[StringLength(1)]
[Comment("货源控制")]
public string FIsSourceControl { get; set; }
///
/// 需要请购
///
[StringLength(1)]
[Comment("需要请购")]
public string FIsPR { get; set; }
///
/// 收货上限比例(%)
///
[Precision(23, 10)]
[Comment("收货上限比例(%)")]
public decimal? FReceiveMaxScale { get; set; }
///
///收货下限比例(%)
///
[Precision(23, 10)]
[Comment("收货下限比例(%)")]
public decimal? FReceiveMinScale { get; set; }
///
/// 代理采购加成比例
///
[Precision(23, 10)]
[Comment("代理采购加成比例")]
public decimal? FAgentPurPlusRate { get; set; }
///
/// 收货提前天数
///
[Precision(23, 10)]
[Comment("收货提前天数")]
public decimal? FReceiveAdvanceDays { get; set; }
///
///收货延迟天数
///
[Precision(23, 10)]
[Comment("收货延迟天数")]
public decimal? FReceiveDelayDays { get; set; }
///
/// 允许退料
///
[StringLength(1)]
[Comment("允许退料")]
public string FIsReturnMaterial { get; set; }
///
/// 采购组织
///
[StringLength(80)]
[Comment("采购组织")]
public string FPurchaseOrgId_Name { get; set; }
///
///委外单位
///
[StringLength(10)]
[Comment("委外单位")]
public string FSubconUnitId_Name { get; set; }
///
/// 委外计价单位
///
[StringLength(10)]
[Comment("委外计价单位")]
public string FSubconPriceUnitId_Name { get; set; }
///
/// 采购类型
///
[StringLength(10)]
[Comment("采购类型")]
public string FPOBillTypeId_Name { get; set; }
///
///委外类型
///
[StringLength(10)]
[Comment("委外类型")]
public string FSubBillType_Name { get; set; }
///
/// 计划策略
///
[StringLength(10)]
[Comment("计划策略")]
public string FPlanningStrategy { get; set; }
///
/// 制造策略
///
[StringLength(80)]
[Comment("制造策略")]
public string FMfgPolicyId_Name { get; set; }
///
///检验提前期单位
///
[StringLength(10)]
[Comment("检验提前期单位")]
public string FCheckLeadTimeType { get; set; }
///
/// 订货策略
///
[StringLength(80)]
[Comment("订货策略")]
public string FOrderPolicy { get; set; }
///
/// 最小订货量
///
[Precision(23, 10)]
[Comment("最小订货量")]
public decimal? FMinPOQty { get; set; }
///
///计划区
///
[StringLength(80)]
[Comment("计划区")]
public string FPlanWorkshop_Name { get; set; }
///
/// 订货间隔期单位
///
[StringLength(10)]
[Comment("订货间隔期单位")]
public string FOrderIntervalTimeType { get; set; }
///
/// 固定提前期
///
[Precision(23, 10)]
[Comment("固定提前期")]
public decimal? FFixLeadTime { get; set; }
///
///最小包装量
///
[Precision(23, 10)]
[Comment("最小包装量")]
public decimal? FIncreaseQty { get; set; }
///
/// 固定提前期单位
///
[Precision(23, 10)]
[Comment("固定提前期单位")]
public decimal? FFixLeadTimeType { get; set; }
///
/// 订货间隔期
///
[Precision(23, 10)]
[Comment("订货间隔期")]
public decimal? FOrderIntervalTime { get; set; }
///
///变动提前期
///
[Precision(23, 10)]
[Comment("变动提前期")]
public decimal? FVarLeadTime { get; set; }
///
/// 变动提前期批量
///
[Precision(23, 10)]
[Comment("变动提前期批量")]
public decimal? FVarLeadTimeLotSize { get; set; }
///
/// 变动提前期单位
///
[StringLength(10)]
[Comment("变动提前期单位")]
public string FVarLeadTimeType { get; set; }
///
///最大订货量
///
[Precision(23, 10)]
[Comment("最大订货量")]
public decimal? FMaxPOQty { get; set; }
///
/// 检验提前期
///
[Precision(23, 10)]
[Comment("检验提前期")]
public decimal? FCheckLeadTime { get; set; }
///
/// 固定/经济批量
///
[Precision(23, 10)]
[Comment("固定/经济批量")]
public decimal? FEOQ { get; set; }
///
///批量拆分间隔天数
///
[Precision(23, 10)]
[Comment("批量拆分间隔天数")]
public decimal? FPlanIntervalsDays { get; set; }
///
/// 拆分批量
///
[Precision(20, 10)]
[Comment("拆分批量")]
public decimal? FPlanBatchSplitQty { get; set; }
///
/// MRP计算是否合并需求
///
[StringLength(1)]
[Comment("MRP计算是否合并需求")]
public string FIsMrpComReq { get; set; }
///
///需求时界
///
[Precision(23, 10)]
[Comment("需求时界")]
public decimal? FRequestTimeZone { get; set; }
///
/// MRP计算是否按单合并
///
[StringLength(1)]
[Comment("MRP计算是否按单合并")]
public string FIsMrpComBill { get; set; }
///
/// 允许提前天数
///
[Precision(23, 10)]
[Comment("允许提前天数")]
public decimal? FCanLeadDays { get; set; }
///
///计划时界
///
[Precision(23, 10)]
[Comment("计划时界")]
public decimal? FPlanTimeZone { get; set; }
///
/// 预留类型
///
[StringLength(10)]
[Comment("预留类型")]
public string FReserveType { get; set; }
///
/// 计划组
///
[StringLength(80)]
[Comment("计划组")]
public string FPlanGroupId_Name { get; set; }
///
///提前宽限期
///
[Precision(23, 10)]
[Comment("提前宽限期")]
public decimal? FLeadExtendDay { get; set; }
///
/// 计划员
///
[StringLength(80)]
[Comment("计划员")]
public string FPlanerID_Name { get; set; }
///
/// ATO预测冲销方案
///
[Precision(23, 10)]
[Comment("ATO预测冲销方案")]
public decimal? FATOSchemeId_Name { get; set; }
///
///允许延后天数
///
[Precision(23, 10)]
[Comment("允许延后天数")]
public decimal? FCanDelayDays { get; set; }
///
/// 偏置时间
///
[Precision(23, 10)]
[Comment("偏置时间")]
public decimal? FPlanOffsetTime { get; set; }
///
/// 安全库存
///
[Precision(23, 10)]
[Comment("安全库存")]
public decimal? FPlanSafeStockQty { get; set; }
///
///按批号匹配供需
///
[StringLength(1)]
[Comment("按批号匹配供需")]
public string FDSMatchByLot { get; set; }
///
/// 预计入库允许部分提前
///
[StringLength(1)]
[Comment("预计入库允许部分提前")]
public string FAllowPartAhead { get; set; }
///
/// 时间紧迫系数
///
[StringLength(80)]
[Comment("时间紧迫系数")]
public string FTimeFactorId_Name { get; set; }
///
///预计入库允许部分延后
///
[StringLength(1)]
[Comment("预计入库允许部分延后")]
public string FAllowPartDelay { get; set; }
///
/// 数量负荷系数
///
[StringLength(80)]
[Comment("数量负荷系数")]
public string FQtyFactorId_Name { get; set; }
///
/// 供应来源
///
[StringLength(80)]
[Comment("供应来源")]
public string FSupplySourceId_Name { get; set; }
///
///延后宽限期
///
[Precision(23, 10)]
[Comment("延后宽限期")]
public decimal? FDelayExtendDay { get; set; }
///
/// 时间单位
///
[StringLength(10)]
[Comment("时间单位")]
public string FPlanOffsetTimeType { get; set; }
///
/// 发料方式
///
[StringLength(10)]
[Comment("发料方式")]
public string FIssueType { get; set; }
///
///生产车间
///
[StringLength(80)]
[Comment("生产车间")]
public string FWorkShopId_Name { get; set; }
///
/// 可为联副产品
///
[StringLength(1)]
[Comment("可为联副产品")]
public string FIsCoby { get; set; }
///
/// 生产单位
///
[StringLength(10)]
[Comment("生产单位")]
public string FProduceUnitId_Name { get; set; }
///
///可为主产品
///
[StringLength(1)]
[Comment("可为主产品")]
public string FIsMainPrd { get; set; }
///
/// 倒冲时机
///
[StringLength(80)]
[Comment("倒冲时机")]
public string FBKFLTime { get; set; }
///
/// 入库超收比例(%)
///
[Precision(23, 10)]
[Comment("入库超收比例(%)")]
public decimal? FFinishReceiptOverRate { get; set; }
///
///发料仓库
///
[StringLength(80)]
[Comment("发料仓库")]
public string FPickStockId_Name { get; set; }
///
/// 入库欠收比例(%)
///
[StringLength(255)]
[Comment("入库欠收比例(%)")]
public string FFinishReceiptShortRate { get; set; }
///
/// 发料仓位
///
[StringLength(80)]
[Comment("发料仓位")]
public string FPickStockLoc { get; set; }
///
///发料仓位.客户.编码
[Comment("发料仓位.客户.编码")]
[StringLength(80)]
public string FPickBinId_FF100002 { get; set; }
///
/// 发料仓位.客户.名称
///
[StringLength(80)]
[Comment("发料仓位.客户.名称")]
public string FPickBinId_FF100002_Name { get; set; }
///
/// 发料仓位.供应商.编码
///
[StringLength(80)]
[Comment("发料仓位.供应商.编码")]
public string FPickBinId_FF100003 { get; set; }
///
///发料仓位.供应商.名称
///
[Comment("发料仓位.供应商.名称")]
[StringLength(80)]
public string FPickBinId_FF100003_Name { get; set; }
///
/// 发料仓位.服务机客户.编码
///
[StringLength(80)]
[Comment("发料仓位.服务机客户.编码")]
public string FPickBinId_FF100004 { get; set; }
///
///发料仓位.服务机客户.名称
///
[StringLength(80)]
[Comment("发料仓位.服务机客户.名称")]
public string FPickBinId_FF100004_Name { get; set; }
///
///超发控制方式
///
[StringLength(10)]
[Comment("超发控制方式")]
public string FOverControlMode { get; set; }
///
/// 子项单位
///
[StringLength(10)]
[Comment("子项单位")]
public string FBOMUnitId_Name { get; set; }
///
///最小发料批量
///
[Precision(23, 10)]
[Comment("最小发料批量")]
public decimal? FMinIssueQty { get; set; }
///
///是否关键件
///
[StringLength(1)]
[Comment("是否关键件")]
public string FIsKitting { get; set; }
///
/// 是否齐套件
///
[StringLength(1)]
[Comment("是否齐套件")]
public string FIsCompleteSet { get; set; }
///
///标准人员准备工时
///
[Precision(23, 10)]
[Comment("标准人员准备工时")]
public decimal? FStdLaborPrePareTime { get; set; }
///
///标准人员实作工时
///
[Precision(23, 10)]
[Comment("标准人员实作工时")]
public decimal? FStdLaborProcessTime { get; set; }
///
/// 默认工艺路线
///
[StringLength(255)]
[Comment("默认工艺路线")]
public string FDefaultRouting_Name { get; set; }
///
///标准工时
///
[Precision(23, 10)]
[Comment("标准工时")]
public decimal? FPerUnitStandHour { get; set; }
///
///标准机器准备工时
///
[Precision(23, 10)]
[Comment("标准机器准备工时")]
public decimal? FStdMachinePrepareTime { get; set; }
///
/// 消耗波动(%)
///
[Precision(23, 10)]
[Comment("消耗波动(%)")]
public decimal? FConsumVolatility { get; set; }
///
///变动损耗率(%)
///
[Precision(23, 10)]
[Comment("变动损耗率(%)")]
public decimal? FLOSSPERCENT { get; set; }
///
///序列号携带到父项
///
[StringLength(1)]
[Comment("序列号携带到父项")]
public string FIsSNCarryToParent { get; set; }
///
/// 标准机器实作工时
///
[Precision(23, 10)]
[Comment("标准机器实作工时")]
public decimal? FStdMachineProcessTime { get; set; }
///
///生产线生产
///
[StringLength(1)]
[Comment("生产线生产")]
public string FIsProductLine { get; set; }
///
///生产类型
///
[StringLength(10)]
[Comment("生产类型")]
public string FProduceBillType_Name { get; set; }
///
/// 组织间受托类型
///
[StringLength(10)]
[Comment("组织间受托类型")]
public string FOrgTrustBillType_Name { get; set; }
///
///领料考虑最小发料批量
///
[StringLength(1)]
[Comment("领料考虑最小发料批量")]
public string FISMinIssueQty { get; set; }
///
///启用ECN
///
[StringLength(1)]
[Comment("启用ECN")]
public string FIsECN { get; set; }
///
/// 启用
///
[StringLength(1)]
[Comment("启用")]
public string FIsEnable1 { get; set; }
///
///影响价格
///
[StringLength(1)]
[Comment("影响价格")]
public string FIsAffectPrice1 { get; set; }
///
///影响计划
///
[StringLength(1)]
[Comment("影响计划")]
public string FIsAffectPlan1 { get; set; }
///
/// 影响出库成本
///
[StringLength(1)]
[Comment("影响出库成本")]
public string FIsAffectCost1 { get; set; }
///
///辅助属性
///
[StringLength(255)]
[Comment("辅助属性")]
public string FAuxPropertyId_Name { get; set; }
///
///组合控制
///
[StringLength(1)]
[Comment("组合控制")]
public string FIsComControl { get; set; }
///
/// 来料检验
///
[StringLength(1)]
[Comment("来料检验")]
public string FCheckIncoming { get; set; }
///
///库存检验
///
[StringLength(1)]
[Comment("库存检验")]
public string FCheckStock { get; set; }
///
///产品检验
///
[StringLength(1)]
[Comment("产品检验")]
public string FCheckProduct { get; set; }
///
/// 抽样方案
///
[StringLength(255)]
[Comment("抽样方案")]
public string FIncSampSchemeId_Name { get; set; }
///
///质检方案
///
[StringLength(255)]
[Comment("质检方案")]
public string FIncQcSchemeId_Name { get; set; }
///
///启用库存周期复检
///
[StringLength(1)]
[Comment("启用库存周期复检")]
public string FEnableCyclistQCSTK { get; set; }
///
/// 复检周期
///
[Precision(23, 10)]
[Comment("复检周期")]
public decimal? FStockCycle { get; set; }
///
///启用库存周期复检提醒
///
[StringLength(1)]
[Comment("启用库存周期复检提醒")]
public string FEnableCyclistQCSTKEW { get; set; }
///
///生产追溯
///
[StringLength(1)]
[Comment("生产追溯")]
public string FIsSNPRDTracy { get; set; }
///
/// 提醒提前期
///
[Precision(23, 10)]
[Comment("提醒提前期")]
public decimal? FEWLeadDay { get; set; }
///
///保修期
///
[Precision(23, 10)]
[Comment("保修期")]
public decimal? FWARRANTY { get; set; }
///
///超发控制单位
///
[StringLength(10)]
[Comment("超发控制单位")]
public string FOutLmtUnit { get; set; }
///
/// 质检组
///
[StringLength(80)]
[Comment("质检组")]
public string FInspectGroupId_Name { get; set; }
///
///发货检验
///
[StringLength(1)]
[Comment("发货检验")]
public string FCheckDelivery { get; set; }
///
///默认条码规则
///
[StringLength(255)]
[Comment("默认条码规则")]
public string FDefBarCodeRuleId_Name { get; set; }
///
/// 退货检验
///
[StringLength(1)]
[Comment("退货检验")]
public string FCheckReturn { get; set; }
///
///质检员
///
[StringLength(80)]
[Comment("质检员")]
public string FInspectorId_Name { get; set; }
///
///配置生产
///
[StringLength(255)]
[Comment("配置生产")]
public string FCONFIGTYPE { get; set; }
///
/// 特征件子项
///
[StringLength(80)]
[Comment("特征件子项")]
public string FFeatureItem { get; set; }
///
///重复打印数
///
[Precision(23, 10)]
[Comment("重复打印数")]
public decimal? FPrintCount { get; set; }
///
///最小发料批量单位
///
[StringLength(10)]
[Comment("最小发料批量单位")]
public string FMinIssueUnitId_Name { get; set; }
///
/// 产品模型
///
[StringLength(80)]
[Comment("产品模型")]
public string FMdlId_Name { get; set; }
///
///模型物料
///
[StringLength(80)]
[Comment("模型物料")]
public string FMdlMaterialId_Name { get; set; }
///
///税收分类编码
///
[StringLength(80)]
[Comment("税收分类编码")]
public string FTaxCategoryCodeId_Name { get; set; }
///
/// 受托材料检验
///
[StringLength(1)]
[Comment("受托材料检验")]
public string FCheckEntrusted { get; set; }
///
///套件
///
[StringLength(1)]
[Comment("套件")]
public string FSuite { get; set; }
///
///单箱标准数量
///
[Precision(23, 10)]
[Comment("单箱标准数量")]
public decimal? FBoxStandardQty { get; set; }
///
/// 销售分组
///
[StringLength(80)]
[Comment("销售分组")]
public string FSalGroup_Name { get; set; }
///
///其他检验
///
[StringLength(1)]
[Comment("其他检验")]
public string FCheckOther { get; set; }
///
///享受税收优惠政策
///
[StringLength(1)]
[Comment("享受税收优惠政策")]
public string FIsTaxEnjoy { get; set; }
///
/// 税收优惠政策类型
///
[StringLength(80)]
[Comment("税收优惠政策类型")]
public string FTaxDiscountsType { get; set; }
///
///工时单位
///
[StringLength(10)]
[Comment("工时单位")]
public string FStandHourUnitId { get; set; }
///
///结算成本价加减价比例(%)
///
[Precision(23, 10)]
[Comment("结算成本价加减价比例(%)")]
public decimal? FCostPriceRate { get; set; }
///
/// 倒冲数量
///
[StringLength(80)]
[Comment("倒冲数量")]
public string FBackFlushType { get; set; }
///
///累计提前期
///
[Precision(23, 10)]
[Comment("累计提前期")]
public decimal? FAccuLeadTime { get; set; }
///
///产品系列
///
[StringLength(255)]
[Comment("产品系列")]
public string FProductLine_Name { get; set; }
///
/// 冲销数量
///
[Precision(23, 10)]
[Comment("冲销数量")]
public decimal? FWriteOffQty { get; set; }
///
///固定损耗
///
[Precision(23, 10)]
[Comment("固定损耗")]
public decimal? FFIXLOSS { get; set; }
///
///计划标识
///
[StringLength(80)]
[Comment("计划标识")]
public string FPlanIdent_Name { get; set; }
///
/// 订单进度分组
///
[StringLength(80)]
[Comment("订单进度分组")]
public string FProScheTrackId_Name { get; set; }
///
///最小包装数
///
[Precision(23, 10)]
[Comment("最小包装数")]
public decimal? FMinPackCount { get; set; }
///
///日产量
///
[Precision(23, 10)]
[Comment("日产量")]
public decimal? FDailyOutQty { get; set; }
///
/// 产品首检
///
[StringLength(1)]
[Comment("产品首检")]
public string FIsFirstInspect { get; set; }
///
///生产退料检验
///
[StringLength(1)]
[Comment("生产退料检验")]
public string FCheckReturnMtrl { get; set; }
///
///禁用原因
///
[StringLength(255)]
[Comment("禁用原因")]
public string FForbidReson_2052 { get; set; }
///
/// 已使用
///
[StringLength(1)]
[Comment("已使用")]
public string FForbidResonIsUsed { get; set; }
///
///不参与可发量统计
///
[StringLength(1)]
[Comment("不参与可发量统计")]
public string FUnValidateExpQty { get; set; }
///
///物料类型
///
[StringLength(10)]
[Comment("物料类型")]
public string F_WLLX { get; set; }
///
/// 启用日排产
///
[StringLength(1)]
[Comment("启用日排产")]
public string FIsEnableSchedule { get; set; }
///
///直接关联物料号
///
[StringLength(80)]
[Comment("直接关联物料号")]
public string F_ZJGLWLH_Name { get; set; }
///
///默认产线
///
[StringLength(80)]
[Comment("默认产线")]
public string FDefaultLineId_Name { get; set; }
///
/// 电压/电网类型
///
[StringLength(80)]
[Comment("电压/电网类型")]
public string F_DYDWLX { get; set; }
///
///根物料号
///
[StringLength(80)]
[Comment("根物料号")]
public string F_GWLH_Name { get; set; }
///
///功率段
///
[StringLength(80)]
[Comment("功率段")]
public string F_GLD_Name { get; set; }
///
///电子料属性
///
[StringLength(80)]
[Comment("电子料属性")]
public string F_DZLSX { get; set; }
///
///旧物料编码U8
///
[StringLength(80)]
[Comment("旧物料编码U8")]
public string F_JWLBMU8 { get; set; }
///
///品牌
///
[StringLength(255)]
[Comment("品牌")]
public string F_PP_Name { get; set; }
///
///整机测试工时
///
[Precision(23, 10)]
[Comment("整机测试工时")]
public decimal? F_ZJCSGS { get; set; }
///
///作业工时
///
[Precision(23, 10)]
[Comment("作业工时")]
public decimal? F_ZYGS { get; set; }
///
///工时最后更改日期
///
[Comment("工时最后更改日期")]
public DateTime? F_GSZHGGRQ { get; set; }
///
///体积重量最后更改日期
[Comment("体积重量最后更改日期")]
public DateTime? F_TJZLZHGGRQ { get; set; }
///
///生命周期最后更改日期
///
[Comment("生命周期最后更改日期")]
public DateTime? F_SMZQZHGGRQ { get; set; }
///
///体积重量最后更改人
///
[StringLength(80)]
[Comment("体积重量最后更改人")]
public string F_TJZLZHGGR_Name { get; set; }
///
///生命周期最后更改人
///
[StringLength(80)]
[Comment("生命周期最后更改人")]
public string F_SMZQZHGGR_Name { get; set; }
///
///工时最后更改人
///
[StringLength(80)]
[Comment("工时最后更改人")]
public string F_GSZHGGR_Name { get; set; }
///
///整机质保(月)
///
[Precision(23, 10)]
[Comment("整机质保(月)")]
public decimal? F_ZJZB_Name { get; set; }
///
///是否记录批次号
///
[StringLength(1)]
[Comment("是否记录批次号")]
public string F_SFJLPCH { get; set; }
///
///业务类型
///
[StringLength(80)]
[Comment("业务类型")]
public string F_YWLX { get; set; }
///
///产品披露类别
///
[StringLength(80)]
[Comment("产品披露类别")]
public string F_CPPLLB { get; set; }
///
///已终审过
///
[StringLength(10)]
[Comment("已终审过")]
public string F_YZSG { get; set; }
///
///物料申请人
///
[StringLength(80)]
[Comment("物料申请人")]
public string F_WLSQR_Name { get; set; }
///
///产品线
///
[StringLength(80)]
[Comment("产品线")]
public string F_CPX_Name { get; set; }
///
///产品分类
///
[StringLength(80)]
[Comment("产品分类")]
public string F_CPFL_Name { get; set; }
///
///料号生命周期
///
[StringLength(80)]
[Comment("料号生命周期")]
public string F_SMZQ { get; set; }
///
///允许收料
///
[StringLength(1)]
[Comment("允许收料")]
public string F_YXSL { get; set; }
///
///SAJ型号
///
[StringLength(80)]
[Comment("SAJ型号")]
public string F_XSXH_2052 { get; set; }
///
///回料包装量
///
[Precision(23, 10)]
[Comment("回料包装量")]
public decimal? F_HLBZL { get; set; }
///
///包装规格
///
[StringLength(255)]
[Comment("包装规格")]
public string F_BZGG { get; set; }
///
///供应商
///
[StringLength(255)]
[Comment("供应商")]
public string F_GYS { get; set; }
///
///禁采原因
///
[StringLength(255)]
[Comment("禁采原因")]
public string F_JCYY { get; set; }
///
///允许请购
///
[StringLength(1)]
[Comment("允许请购")]
public string F_YXQG { get; set; }
}
}