BusinessExtMigrationDbContextModelSnapshot.cs 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402
  1. // <auto-generated />
  2. using System;
  3. using Business.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore;
  5. using Microsoft.EntityFrameworkCore.Infrastructure;
  6. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  7. using Volo.Abp.EntityFrameworkCore;
  8. #nullable disable
  9. namespace Business.Migrations.BusinessExtMigrationDb
  10. {
  11. [DbContext(typeof(BusinessExtMigrationDbContext))]
  12. partial class BusinessExtMigrationDbContextModelSnapshot : ModelSnapshot
  13. {
  14. protected override void BuildModel(ModelBuilder modelBuilder)
  15. {
  16. #pragma warning disable 612, 618
  17. modelBuilder
  18. .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.MySql)
  19. .HasAnnotation("ProductVersion", "6.0.5")
  20. .HasAnnotation("Relational:MaxIdentifierLength", 64);
  21. modelBuilder.Entity("Bussiness.Model.Ext.material", b =>
  22. {
  23. b.Property<long>("Id")
  24. .ValueGeneratedOnAdd()
  25. .HasColumnType("bigint");
  26. b.Property<decimal?>("FATOSchemeId_Name")
  27. .HasPrecision(20, 8)
  28. .HasColumnType("decimal(20,8)")
  29. .HasComment("ATO预测冲销方案");
  30. b.Property<decimal?>("FAccuLeadTime")
  31. .HasPrecision(20, 8)
  32. .HasColumnType("decimal(20,8)")
  33. .HasComment("累计提前期");
  34. b.Property<decimal?>("FAgentSalReduceRate")
  35. .HasPrecision(20, 8)
  36. .HasColumnType("decimal(20,8)")
  37. .HasComment("代理销售减价比例(%)");
  38. b.Property<string>("FAllowPartAhead")
  39. .HasMaxLength(1)
  40. .HasColumnType("varchar(1)")
  41. .HasComment("预计入库允许部分提前");
  42. b.Property<string>("FAllowPartDelay")
  43. .HasMaxLength(1)
  44. .HasColumnType("varchar(1)")
  45. .HasComment("预计入库允许部分延后");
  46. b.Property<string>("FAllowPublish")
  47. .HasMaxLength(1)
  48. .HasColumnType("varchar(1)")
  49. .HasComment("允许发布到订货平台");
  50. b.Property<DateTime?>("FApproveDate")
  51. .HasColumnType("datetime(6)")
  52. .HasComment("审核日期");
  53. b.Property<string>("FApproverId_Name")
  54. .HasMaxLength(80)
  55. .HasColumnType("varchar(80)")
  56. .HasComment("审核人");
  57. b.Property<string>("FAuxPropertyId_Name")
  58. .HasMaxLength(255)
  59. .HasColumnType("varchar(255)")
  60. .HasComment("辅助属性");
  61. b.Property<string>("FAuxUnitID_Name")
  62. .HasMaxLength(10)
  63. .HasColumnType("varchar(10)")
  64. .HasComment("辅助单位");
  65. b.Property<string>("FBARCODE")
  66. .HasMaxLength(80)
  67. .HasColumnType("varchar(80)")
  68. .HasComment("条码");
  69. b.Property<string>("FBKFLTime")
  70. .HasMaxLength(80)
  71. .HasColumnType("varchar(80)")
  72. .HasComment("倒冲时机");
  73. b.Property<string>("FBOMUnitId_Name")
  74. .HasMaxLength(10)
  75. .HasColumnType("varchar(10)")
  76. .HasComment("子项单位");
  77. b.Property<string>("FBackFlushType")
  78. .HasMaxLength(80)
  79. .HasColumnType("varchar(80)")
  80. .HasComment("倒冲数量");
  81. b.Property<string>("FBaseUnitId_Name")
  82. .HasMaxLength(80)
  83. .HasColumnType("varchar(80)")
  84. .HasComment("基本单位");
  85. b.Property<string>("FBatchRuleID_Name")
  86. .HasMaxLength(80)
  87. .HasColumnType("varchar(80)")
  88. .HasComment("批号编码规则");
  89. b.Property<decimal?>("FBoxStandardQty")
  90. .HasPrecision(20, 8)
  91. .HasColumnType("decimal(20,8)")
  92. .HasComment("单箱标准数量");
  93. b.Property<string>("FCONFIGTYPE")
  94. .HasMaxLength(255)
  95. .HasColumnType("varchar(255)")
  96. .HasComment("配置生产");
  97. b.Property<decimal?>("FCanDelayDays")
  98. .HasPrecision(20, 8)
  99. .HasColumnType("decimal(20,8)")
  100. .HasComment("允许延后天数");
  101. b.Property<decimal?>("FCanLeadDays")
  102. .HasPrecision(20, 8)
  103. .HasColumnType("decimal(20,8)")
  104. .HasComment("允许提前天数");
  105. b.Property<string>("FCategoryID_Name")
  106. .HasMaxLength(80)
  107. .HasColumnType("varchar(80)")
  108. .HasComment("存货类别");
  109. b.Property<string>("FChargeID_Name")
  110. .HasMaxLength(80)
  111. .HasColumnType("varchar(80)")
  112. .HasComment("费用项目");
  113. b.Property<string>("FCheckDelivery")
  114. .HasMaxLength(1)
  115. .HasColumnType("varchar(1)")
  116. .HasComment("发货检验");
  117. b.Property<string>("FCheckEntrusted")
  118. .HasMaxLength(1)
  119. .HasColumnType("varchar(1)")
  120. .HasComment("受托材料检验");
  121. b.Property<string>("FCheckIncoming")
  122. .HasMaxLength(1)
  123. .HasColumnType("varchar(1)")
  124. .HasComment("来料检验");
  125. b.Property<decimal?>("FCheckLeadTime")
  126. .HasPrecision(20, 8)
  127. .HasColumnType("decimal(20,8)")
  128. .HasComment("检验提前期");
  129. b.Property<string>("FCheckLeadTimeType")
  130. .HasMaxLength(10)
  131. .HasColumnType("varchar(10)")
  132. .HasComment("检验提前期单位");
  133. b.Property<string>("FCheckOther")
  134. .HasMaxLength(1)
  135. .HasColumnType("varchar(1)")
  136. .HasComment("其他检验");
  137. b.Property<string>("FCheckProduct")
  138. .HasMaxLength(1)
  139. .HasColumnType("varchar(1)")
  140. .HasComment("产品检验");
  141. b.Property<string>("FCheckReturn")
  142. .HasMaxLength(1)
  143. .HasColumnType("varchar(1)")
  144. .HasComment("退货检验");
  145. b.Property<string>("FCheckReturnMtrl")
  146. .HasMaxLength(1)
  147. .HasColumnType("varchar(1)")
  148. .HasComment("生产退料检验");
  149. b.Property<string>("FCheckStock")
  150. .HasMaxLength(1)
  151. .HasColumnType("varchar(1)")
  152. .HasComment("库存检验");
  153. b.Property<decimal?>("FConsumVolatility")
  154. .HasPrecision(20, 8)
  155. .HasColumnType("decimal(20,8)")
  156. .HasComment("消耗波动(%)");
  157. b.Property<decimal?>("FCostPriceRate")
  158. .HasPrecision(20, 8)
  159. .HasColumnType("decimal(20,8)")
  160. .HasComment("结算成本价加减价比例(%)");
  161. b.Property<string>("FCountCycle")
  162. .HasMaxLength(10)
  163. .HasColumnType("varchar(10)")
  164. .HasComment("盘点周期单位");
  165. b.Property<decimal?>("FCountDay")
  166. .HasPrecision(20, 8)
  167. .HasColumnType("decimal(20,8)")
  168. .HasComment("盘点周期");
  169. b.Property<DateTime?>("FCreateDate")
  170. .HasColumnType("datetime(6)")
  171. .HasComment("创建日期");
  172. b.Property<string>("FCreateOrgId_Name")
  173. .HasMaxLength(80)
  174. .HasColumnType("varchar(80)")
  175. .HasComment("创建组织");
  176. b.Property<string>("FCreatorId_Name")
  177. .HasMaxLength(80)
  178. .HasColumnType("varchar(80)")
  179. .HasComment("创建人");
  180. b.Property<string>("FCurrencyId_Name")
  181. .HasMaxLength(80)
  182. .HasColumnType("varchar(80)")
  183. .HasComment("币别");
  184. b.Property<string>("FDSMatchByLot")
  185. .HasMaxLength(1)
  186. .HasColumnType("varchar(1)")
  187. .HasComment("按批号匹配供需");
  188. b.Property<decimal?>("FDailyOutQty")
  189. .HasPrecision(20, 8)
  190. .HasColumnType("decimal(20,8)")
  191. .HasComment("日产量");
  192. b.Property<string>("FDataSource")
  193. .HasMaxLength(10)
  194. .HasColumnType("varchar(10)")
  195. .HasComment("物料来源");
  196. b.Property<string>("FDefBarCodeRuleId_Name")
  197. .HasMaxLength(255)
  198. .HasColumnType("varchar(255)")
  199. .HasComment("默认条码规则");
  200. b.Property<string>("FDefaultLineId_Name")
  201. .HasMaxLength(80)
  202. .HasColumnType("varchar(80)")
  203. .HasComment("默认产线");
  204. b.Property<string>("FDefaultRouting_Name")
  205. .HasMaxLength(255)
  206. .HasColumnType("varchar(255)")
  207. .HasComment("默认工艺路线");
  208. b.Property<string>("FDefaultVendor_Name")
  209. .HasMaxLength(80)
  210. .HasColumnType("varchar(80)")
  211. .HasComment("默认供应商");
  212. b.Property<decimal?>("FDelayExtendDay")
  213. .HasPrecision(20, 8)
  214. .HasColumnType("decimal(20,8)")
  215. .HasComment("延后宽限期");
  216. b.Property<string>("FDescription_2052")
  217. .HasMaxLength(255)
  218. .HasColumnType("varchar(255)")
  219. .HasComment("描述");
  220. b.Property<decimal?>("FEOQ")
  221. .HasPrecision(20, 8)
  222. .HasColumnType("decimal(20,8)")
  223. .HasComment("固定/经济批量");
  224. b.Property<decimal?>("FEWLeadDay")
  225. .HasPrecision(20, 8)
  226. .HasColumnType("decimal(20,8)")
  227. .HasComment("提醒提前期");
  228. b.Property<decimal?>("FEconReOrderQty")
  229. .HasPrecision(20, 8)
  230. .HasColumnType("decimal(20,8)")
  231. .HasComment("经济订货批量");
  232. b.Property<string>("FEnableCyclistQCSTK")
  233. .HasMaxLength(1)
  234. .HasColumnType("varchar(1)")
  235. .HasComment("启用库存周期复检");
  236. b.Property<string>("FEnableCyclistQCSTKEW")
  237. .HasMaxLength(1)
  238. .HasColumnType("varchar(1)")
  239. .HasComment("启用库存周期复检提醒");
  240. b.Property<string>("FErpClsID")
  241. .HasMaxLength(80)
  242. .HasColumnType("varchar(80)")
  243. .HasComment("物料属性");
  244. b.Property<decimal?>("FExpPeriod")
  245. .HasPrecision(20, 8)
  246. .HasColumnType("decimal(20,8)")
  247. .HasComment("保质期");
  248. b.Property<string>("FExpUnit")
  249. .HasMaxLength(10)
  250. .HasColumnType("varchar(10)")
  251. .HasComment("保质期单位");
  252. b.Property<decimal?>("FFIXLOSS")
  253. .HasPrecision(20, 8)
  254. .HasColumnType("decimal(20,8)")
  255. .HasComment("固定损耗");
  256. b.Property<string>("FFeatureItem")
  257. .HasMaxLength(80)
  258. .HasColumnType("varchar(80)")
  259. .HasComment("特征件子项");
  260. b.Property<decimal?>("FFinishReceiptOverRate")
  261. .HasPrecision(20, 8)
  262. .HasColumnType("decimal(20,8)")
  263. .HasComment("入库超收比例(%)");
  264. b.Property<string>("FFinishReceiptShortRate")
  265. .HasMaxLength(255)
  266. .HasColumnType("varchar(255)")
  267. .HasComment("入库欠收比例(%)");
  268. b.Property<decimal?>("FFixLeadTime")
  269. .HasPrecision(20, 8)
  270. .HasColumnType("decimal(20,8)")
  271. .HasComment("固定提前期");
  272. b.Property<decimal?>("FFixLeadTimeType")
  273. .HasPrecision(20, 8)
  274. .HasColumnType("decimal(20,8)")
  275. .HasComment("固定提前期单位");
  276. b.Property<DateTime?>("FForbidDate")
  277. .HasColumnType("datetime(6)")
  278. .HasComment("禁用日期");
  279. b.Property<string>("FForbidResonIsUsed")
  280. .HasMaxLength(1)
  281. .HasColumnType("varchar(1)")
  282. .HasComment("已使用");
  283. b.Property<string>("FForbidReson_2052")
  284. .HasMaxLength(255)
  285. .HasColumnType("varchar(255)")
  286. .HasComment("禁用原因");
  287. b.Property<string>("FForbidStatus")
  288. .HasMaxLength(10)
  289. .HasColumnType("varchar(10)")
  290. .HasComment("禁用状态");
  291. b.Property<string>("FForbidderId_Name")
  292. .HasMaxLength(80)
  293. .HasColumnType("varchar(80)")
  294. .HasComment("禁用人");
  295. b.Property<decimal?>("FGROSSWEIGHT")
  296. .HasPrecision(20, 8)
  297. .HasColumnType("decimal(20,8)")
  298. .HasComment("毛重");
  299. b.Property<decimal?>("FHEIGHT")
  300. .HasPrecision(20, 8)
  301. .HasColumnType("decimal(20,8)")
  302. .HasComment("高");
  303. b.Property<decimal?>("FIFAgentPurPlusRatesPR")
  304. .HasPrecision(20, 8)
  305. .HasColumnType("decimal(20,8)")
  306. .HasComment("代理采购加成比例");
  307. b.Property<string>("FISAFTERSALE")
  308. .HasMaxLength(1)
  309. .HasColumnType("varchar(1)")
  310. .HasComment("启用售后服务");
  311. b.Property<string>("FISMinIssueQty")
  312. .HasMaxLength(1)
  313. .HasColumnType("varchar(1)")
  314. .HasComment("领料考虑最小发料批量");
  315. b.Property<string>("FISPRODUCTFILES")
  316. .HasMaxLength(1)
  317. .HasColumnType("varchar(1)")
  318. .HasComment("生成产品档案");
  319. b.Property<string>("FISWARRANTED")
  320. .HasMaxLength(1)
  321. .HasColumnType("varchar(1)")
  322. .HasComment("是否保修");
  323. b.Property<string>("FIncQcSchemeId_Name")
  324. .HasMaxLength(255)
  325. .HasColumnType("varchar(255)")
  326. .HasComment("质检方案");
  327. b.Property<string>("FIncSampSchemeId_Name")
  328. .HasMaxLength(255)
  329. .HasColumnType("varchar(255)")
  330. .HasComment("抽样方案");
  331. b.Property<decimal?>("FIncreaseQty")
  332. .HasPrecision(20, 8)
  333. .HasColumnType("decimal(20,8)")
  334. .HasComment("最小包装量");
  335. b.Property<string>("FInspectGroupId_Name")
  336. .HasMaxLength(80)
  337. .HasColumnType("varchar(80)")
  338. .HasComment("质检组");
  339. b.Property<string>("FInspectorId_Name")
  340. .HasMaxLength(80)
  341. .HasColumnType("varchar(80)")
  342. .HasComment("质检员");
  343. b.Property<string>("FIsATPCheck")
  344. .HasMaxLength(1)
  345. .HasColumnType("varchar(1)")
  346. .HasComment("ATP检查");
  347. b.Property<string>("FIsAffectCost1")
  348. .HasMaxLength(1)
  349. .HasColumnType("varchar(1)")
  350. .HasComment("影响出库成本");
  351. b.Property<string>("FIsAffectPlan1")
  352. .HasMaxLength(1)
  353. .HasColumnType("varchar(1)")
  354. .HasComment("影响计划");
  355. b.Property<string>("FIsAffectPrice1")
  356. .HasMaxLength(1)
  357. .HasColumnType("varchar(1)")
  358. .HasComment("影响价格");
  359. b.Property<string>("FIsBatchManage")
  360. .HasMaxLength(1)
  361. .HasColumnType("varchar(1)")
  362. .HasComment("启用批号管理");
  363. b.Property<string>("FIsCoby")
  364. .HasMaxLength(1)
  365. .HasColumnType("varchar(1)")
  366. .HasComment("可为联副产品");
  367. b.Property<string>("FIsComControl")
  368. .HasMaxLength(1)
  369. .HasColumnType("varchar(1)")
  370. .HasComment("组合控制");
  371. b.Property<string>("FIsCompleteSet")
  372. .HasMaxLength(1)
  373. .HasColumnType("varchar(1)")
  374. .HasComment("是否齐套件");
  375. b.Property<string>("FIsCycleCounting")
  376. .HasMaxLength(1)
  377. .HasColumnType("varchar(1)")
  378. .HasComment("启用盘点周期");
  379. b.Property<string>("FIsECN")
  380. .HasMaxLength(1)
  381. .HasColumnType("varchar(1)")
  382. .HasComment("启用ECN");
  383. b.Property<string>("FIsEnable1")
  384. .HasMaxLength(1)
  385. .HasColumnType("varchar(1)")
  386. .HasComment("启用");
  387. b.Property<string>("FIsEnableMaxStock")
  388. .HasMaxLength(1)
  389. .HasColumnType("varchar(1)")
  390. .HasComment("启用最大库存");
  391. b.Property<string>("FIsEnableMinStock")
  392. .HasMaxLength(1)
  393. .HasColumnType("varchar(1)")
  394. .HasComment("启用最小库存");
  395. b.Property<string>("FIsEnableReOrder")
  396. .HasMaxLength(1)
  397. .HasColumnType("varchar(1)")
  398. .HasComment("启用再订货点");
  399. b.Property<string>("FIsEnableSafeStock")
  400. .HasMaxLength(1)
  401. .HasColumnType("varchar(1)")
  402. .HasComment("启用安全库存");
  403. b.Property<string>("FIsEnableSchedule")
  404. .HasMaxLength(1)
  405. .HasColumnType("varchar(1)")
  406. .HasComment("启用日排产");
  407. b.Property<string>("FIsExpParToFlot")
  408. .HasMaxLength(1)
  409. .HasColumnType("varchar(1)")
  410. .HasComment("批号附属信息");
  411. b.Property<string>("FIsFirstInspect")
  412. .HasMaxLength(1)
  413. .HasColumnType("varchar(1)")
  414. .HasComment("产品首检");
  415. b.Property<string>("FIsInventory")
  416. .HasMaxLength(1)
  417. .HasColumnType("varchar(1)")
  418. .HasComment("允许库存");
  419. b.Property<string>("FIsKFPeriod")
  420. .HasMaxLength(1)
  421. .HasColumnType("varchar(1)")
  422. .HasComment("启用保质期管理");
  423. b.Property<string>("FIsKitting")
  424. .HasMaxLength(1)
  425. .HasColumnType("varchar(1)")
  426. .HasComment("是否关键件");
  427. b.Property<string>("FIsLockStock")
  428. .HasMaxLength(1)
  429. .HasColumnType("varchar(1)")
  430. .HasComment("可锁库");
  431. b.Property<string>("FIsMainPrd")
  432. .HasMaxLength(1)
  433. .HasColumnType("varchar(1)")
  434. .HasComment("可为主产品");
  435. b.Property<string>("FIsMrpComBill")
  436. .HasMaxLength(1)
  437. .HasColumnType("varchar(1)")
  438. .HasComment("MRP计算是否按单合并");
  439. b.Property<string>("FIsMrpComReq")
  440. .HasMaxLength(1)
  441. .HasColumnType("varchar(1)")
  442. .HasComment("MRP计算是否合并需求");
  443. b.Property<string>("FIsMustCounting")
  444. .HasMaxLength(1)
  445. .HasColumnType("varchar(1)")
  446. .HasComment("必盘");
  447. b.Property<string>("FIsPR")
  448. .HasMaxLength(1)
  449. .HasColumnType("varchar(1)")
  450. .HasComment("需要请购");
  451. b.Property<string>("FIsProductLine")
  452. .HasMaxLength(1)
  453. .HasColumnType("varchar(1)")
  454. .HasComment("生产线生产");
  455. b.Property<string>("FIsPurchase")
  456. .HasMaxLength(1)
  457. .HasColumnType("varchar(1)")
  458. .HasComment("允许采购");
  459. b.Property<string>("FIsQuota")
  460. .HasMaxLength(1)
  461. .HasColumnType("varchar(1)")
  462. .HasComment("配额管理");
  463. b.Property<string>("FIsReturn")
  464. .HasMaxLength(1)
  465. .HasColumnType("varchar(1)")
  466. .HasComment("允许退货");
  467. b.Property<string>("FIsReturnMaterial")
  468. .HasMaxLength(1)
  469. .HasColumnType("varchar(1)")
  470. .HasComment("允许退料");
  471. b.Property<string>("FIsReturnPart")
  472. .HasMaxLength(1)
  473. .HasColumnType("varchar(1)")
  474. .HasComment("部件可退");
  475. b.Property<string>("FIsSNCarryToParent")
  476. .HasMaxLength(1)
  477. .HasColumnType("varchar(1)")
  478. .HasComment("序列号携带到父项");
  479. b.Property<string>("FIsSNManage")
  480. .HasMaxLength(1)
  481. .HasColumnType("varchar(1)")
  482. .HasComment("库存管理");
  483. b.Property<string>("FIsSNPRDTracy")
  484. .HasMaxLength(1)
  485. .HasColumnType("varchar(1)")
  486. .HasComment("生产追溯");
  487. b.Property<string>("FIsSale")
  488. .HasMaxLength(1)
  489. .HasColumnType("varchar(1)")
  490. .HasComment("允许销售");
  491. b.Property<string>("FIsSourceControl")
  492. .HasMaxLength(1)
  493. .HasColumnType("varchar(1)")
  494. .HasComment("货源控制");
  495. b.Property<string>("FIsSubContract")
  496. .HasMaxLength(1)
  497. .HasColumnType("varchar(1)")
  498. .HasComment("允许委外");
  499. b.Property<string>("FIsTaxEnjoy")
  500. .HasMaxLength(1)
  501. .HasColumnType("varchar(1)")
  502. .HasComment("享受税收优惠政策");
  503. b.Property<string>("FIsVmiBusiness")
  504. .HasMaxLength(1)
  505. .HasColumnType("varchar(1)")
  506. .HasComment("VMI业务");
  507. b.Property<string>("FIssueType")
  508. .HasMaxLength(10)
  509. .HasColumnType("varchar(10)")
  510. .HasComment("发料方式");
  511. b.Property<decimal?>("FLENGTH")
  512. .HasPrecision(20, 8)
  513. .HasColumnType("decimal(20,8)")
  514. .HasComment("长");
  515. b.Property<decimal?>("FLOSSPERCENT")
  516. .HasPrecision(20, 8)
  517. .HasColumnType("decimal(20,8)")
  518. .HasComment("变动损耗率(%)");
  519. b.Property<decimal?>("FLeadExtendDay")
  520. .HasPrecision(20, 8)
  521. .HasColumnType("decimal(20,8)")
  522. .HasComment("提前宽限期");
  523. b.Property<string>("FMaterialGroup")
  524. .HasMaxLength(80)
  525. .HasColumnType("varchar(80)")
  526. .HasComment("物料分组编码");
  527. b.Property<string>("FMaterialGroup_Name")
  528. .HasMaxLength(80)
  529. .HasColumnType("varchar(80)")
  530. .HasComment("物料分组");
  531. b.Property<decimal?>("FMaxPOQty")
  532. .HasPrecision(20, 8)
  533. .HasColumnType("decimal(20,8)")
  534. .HasComment("最大订货量");
  535. b.Property<decimal?>("FMaxStock")
  536. .HasPrecision(20, 8)
  537. .HasColumnType("decimal(20,8)")
  538. .HasComment("最大库存");
  539. b.Property<string>("FMdlId_Name")
  540. .HasMaxLength(80)
  541. .HasColumnType("varchar(80)")
  542. .HasComment("产品模型");
  543. b.Property<string>("FMdlMaterialId_Name")
  544. .HasMaxLength(80)
  545. .HasColumnType("varchar(80)")
  546. .HasComment("模型物料");
  547. b.Property<string>("FMfgPolicyId_Name")
  548. .HasMaxLength(80)
  549. .HasColumnType("varchar(80)")
  550. .HasComment("制造策略");
  551. b.Property<decimal?>("FMinIssueQty")
  552. .HasPrecision(20, 8)
  553. .HasColumnType("decimal(20,8)")
  554. .HasComment("最小发料批量");
  555. b.Property<string>("FMinIssueUnitId_Name")
  556. .HasMaxLength(10)
  557. .HasColumnType("varchar(10)")
  558. .HasComment("最小发料批量单位");
  559. b.Property<decimal?>("FMinPOQty")
  560. .HasPrecision(20, 8)
  561. .HasColumnType("decimal(20,8)")
  562. .HasComment("最小订货量");
  563. b.Property<decimal?>("FMinPackCount")
  564. .HasPrecision(20, 8)
  565. .HasColumnType("decimal(20,8)")
  566. .HasComment("最小包装数");
  567. b.Property<decimal?>("FMinSplitQty")
  568. .HasPrecision(20, 8)
  569. .HasColumnType("decimal(20,8)")
  570. .HasComment("最小拆分数量");
  571. b.Property<decimal?>("FMinStock")
  572. .HasPrecision(20, 8)
  573. .HasColumnType("decimal(20,8)")
  574. .HasComment("最小库存");
  575. b.Property<string>("FMnemonicCode")
  576. .HasMaxLength(80)
  577. .HasColumnType("varchar(80)")
  578. .HasComment("助记码");
  579. b.Property<string>("FModifierId_Name")
  580. .HasMaxLength(80)
  581. .HasColumnType("varchar(80)")
  582. .HasComment("修改人");
  583. b.Property<DateTime?>("FModifyDate")
  584. .HasColumnType("datetime(6)")
  585. .HasComment("修改日期");
  586. b.Property<decimal?>("FNETWEIGHT")
  587. .HasPrecision(20, 8)
  588. .HasColumnType("decimal(20,8)")
  589. .HasComment("净重");
  590. b.Property<string>("FName_2052")
  591. .HasMaxLength(80)
  592. .HasColumnType("varchar(80)")
  593. .HasComment("名称");
  594. b.Property<string>("FNumber")
  595. .HasMaxLength(80)
  596. .HasColumnType("varchar(80)")
  597. .HasComment("编码");
  598. b.Property<string>("FOldNumber")
  599. .HasMaxLength(80)
  600. .HasColumnType("varchar(80)")
  601. .HasComment("旧物料编码");
  602. b.Property<decimal?>("FOnlineLife")
  603. .HasPrecision(20, 8)
  604. .HasColumnType("decimal(20,8)")
  605. .HasComment("在架寿命期");
  606. b.Property<decimal?>("FOrderIntervalTime")
  607. .HasPrecision(20, 8)
  608. .HasColumnType("decimal(20,8)")
  609. .HasComment("订货间隔期");
  610. b.Property<string>("FOrderIntervalTimeType")
  611. .HasMaxLength(10)
  612. .HasColumnType("varchar(10)")
  613. .HasComment("订货间隔期单位");
  614. b.Property<string>("FOrderPolicy")
  615. .HasMaxLength(80)
  616. .HasColumnType("varchar(80)")
  617. .HasComment("订货策略");
  618. b.Property<decimal?>("FOrderQty")
  619. .HasPrecision(20, 10)
  620. .HasColumnType("decimal(20,10)")
  621. .HasComment("起订量");
  622. b.Property<string>("FOrgTrustBillType_Name")
  623. .HasMaxLength(10)
  624. .HasColumnType("varchar(10)")
  625. .HasComment("组织间受托类型");
  626. b.Property<string>("FOutLmtUnit")
  627. .HasMaxLength(10)
  628. .HasColumnType("varchar(10)")
  629. .HasComment("超发控制单位");
  630. b.Property<decimal?>("FOutStockLmtH")
  631. .HasPrecision(20, 8)
  632. .HasColumnType("decimal(20,8)")
  633. .HasComment("超发上限(%)");
  634. b.Property<decimal?>("FOutStockLmtL")
  635. .HasPrecision(20, 8)
  636. .HasColumnType("decimal(20,8)")
  637. .HasComment("超发下限(%)");
  638. b.Property<string>("FOverControlMode")
  639. .HasMaxLength(10)
  640. .HasColumnType("varchar(10)")
  641. .HasComment("超发控制方式");
  642. b.Property<string>("FPOBillTypeId_Name")
  643. .HasMaxLength(10)
  644. .HasColumnType("varchar(10)")
  645. .HasComment("采购类型");
  646. b.Property<decimal?>("FPerUnitStandHour")
  647. .HasPrecision(20, 8)
  648. .HasColumnType("decimal(20,8)")
  649. .HasComment("标准工时");
  650. b.Property<string>("FPickBinId_FF100002")
  651. .HasMaxLength(80)
  652. .HasColumnType("varchar(80)")
  653. .HasComment("发料仓位.客户.编码");
  654. b.Property<string>("FPickBinId_FF100002_Name")
  655. .HasMaxLength(80)
  656. .HasColumnType("varchar(80)")
  657. .HasComment("发料仓位.客户.名称");
  658. b.Property<string>("FPickBinId_FF100003")
  659. .HasMaxLength(80)
  660. .HasColumnType("varchar(80)")
  661. .HasComment("发料仓位.供应商.编码");
  662. b.Property<string>("FPickBinId_FF100003_Name")
  663. .HasMaxLength(80)
  664. .HasColumnType("varchar(80)")
  665. .HasComment("发料仓位.供应商.名称");
  666. b.Property<string>("FPickBinId_FF100004")
  667. .HasMaxLength(80)
  668. .HasColumnType("varchar(80)")
  669. .HasComment("发料仓位.服务机客户.编码");
  670. b.Property<string>("FPickBinId_FF100004_Name")
  671. .HasMaxLength(80)
  672. .HasColumnType("varchar(80)")
  673. .HasComment("发料仓位.服务机客户.名称");
  674. b.Property<string>("FPickStockId_Name")
  675. .HasMaxLength(80)
  676. .HasColumnType("varchar(80)")
  677. .HasComment("发料仓库");
  678. b.Property<string>("FPickStockLoc")
  679. .HasMaxLength(80)
  680. .HasColumnType("varchar(80)")
  681. .HasComment("发料仓位");
  682. b.Property<decimal?>("FPlanBatchSplitQty")
  683. .HasPrecision(20, 10)
  684. .HasColumnType("decimal(20,10)")
  685. .HasComment("拆分批量");
  686. b.Property<string>("FPlanGroupId_Name")
  687. .HasMaxLength(80)
  688. .HasColumnType("varchar(80)")
  689. .HasComment("计划组");
  690. b.Property<string>("FPlanIdent_Name")
  691. .HasMaxLength(80)
  692. .HasColumnType("varchar(80)")
  693. .HasComment("计划标识");
  694. b.Property<decimal?>("FPlanIntervalsDays")
  695. .HasPrecision(20, 8)
  696. .HasColumnType("decimal(20,8)")
  697. .HasComment("批量拆分间隔天数");
  698. b.Property<decimal?>("FPlanOffsetTime")
  699. .HasPrecision(20, 8)
  700. .HasColumnType("decimal(20,8)")
  701. .HasComment("偏置时间");
  702. b.Property<string>("FPlanOffsetTimeType")
  703. .HasMaxLength(10)
  704. .HasColumnType("varchar(10)")
  705. .HasComment("时间单位");
  706. b.Property<decimal?>("FPlanSafeStockQty")
  707. .HasPrecision(20, 8)
  708. .HasColumnType("decimal(20,8)")
  709. .HasComment("安全库存");
  710. b.Property<decimal?>("FPlanTimeZone")
  711. .HasPrecision(20, 8)
  712. .HasColumnType("decimal(20,8)")
  713. .HasComment("计划时界");
  714. b.Property<string>("FPlanWorkshop_Name")
  715. .HasMaxLength(80)
  716. .HasColumnType("varchar(80)")
  717. .HasComment("计划区");
  718. b.Property<string>("FPlanerID_Name")
  719. .HasMaxLength(80)
  720. .HasColumnType("varchar(80)")
  721. .HasComment("计划员");
  722. b.Property<string>("FPlanningStrategy")
  723. .HasMaxLength(10)
  724. .HasColumnType("varchar(10)")
  725. .HasComment("计划策略");
  726. b.Property<decimal?>("FPrintCount")
  727. .HasPrecision(20, 8)
  728. .HasColumnType("decimal(20,8)")
  729. .HasComment("重复打印数");
  730. b.Property<string>("FProScheTrackId_Name")
  731. .HasMaxLength(80)
  732. .HasColumnType("varchar(80)")
  733. .HasComment("订单进度分组");
  734. b.Property<string>("FProduceBillType_Name")
  735. .HasMaxLength(10)
  736. .HasColumnType("varchar(10)")
  737. .HasComment("生产类型");
  738. b.Property<string>("FProduceUnitId_Name")
  739. .HasMaxLength(10)
  740. .HasColumnType("varchar(10)")
  741. .HasComment("生产单位");
  742. b.Property<string>("FProductLine_Name")
  743. .HasMaxLength(255)
  744. .HasColumnType("varchar(255)")
  745. .HasComment("产品系列");
  746. b.Property<string>("FPurchaseGroupId_Name")
  747. .HasMaxLength(80)
  748. .HasColumnType("varchar(80)")
  749. .HasComment("采购组");
  750. b.Property<string>("FPurchaseOrgId_Name")
  751. .HasMaxLength(80)
  752. .HasColumnType("varchar(80)")
  753. .HasComment("采购组织");
  754. b.Property<string>("FPurchasePriceUnitId_Name")
  755. .HasMaxLength(10)
  756. .HasColumnType("varchar(10)")
  757. .HasComment("采购计价单位");
  758. b.Property<string>("FPurchaseUnitId_Name")
  759. .HasMaxLength(10)
  760. .HasColumnType("varchar(10)")
  761. .HasComment("采购单位");
  762. b.Property<string>("FPurchaserId_Name")
  763. .HasMaxLength(80)
  764. .HasColumnType("varchar(80)")
  765. .HasComment("采购员");
  766. b.Property<string>("FQtyFactorId_Name")
  767. .HasMaxLength(80)
  768. .HasColumnType("varchar(80)")
  769. .HasComment("数量负荷系数");
  770. b.Property<string>("FQuotaType")
  771. .HasMaxLength(80)
  772. .HasColumnType("varchar(80)")
  773. .HasComment("配额方式");
  774. b.Property<decimal?>("FReOrderGood")
  775. .HasPrecision(20, 8)
  776. .HasColumnType("decimal(20,8)")
  777. .HasComment("再订货点");
  778. b.Property<decimal?>("FReceiveAdvanceDays")
  779. .HasPrecision(20, 8)
  780. .HasColumnType("decimal(20,8)")
  781. .HasComment("收货提前天数");
  782. b.Property<decimal?>("FReceiveDelayDays")
  783. .HasPrecision(20, 8)
  784. .HasColumnType("decimal(20,8)")
  785. .HasComment("收货延迟天数");
  786. b.Property<decimal?>("FReceiveMaxScale")
  787. .HasPrecision(20, 8)
  788. .HasColumnType("decimal(20,8)")
  789. .HasComment("收货上限比例(%)");
  790. b.Property<decimal?>("FReceiveMinScale")
  791. .HasPrecision(20, 8)
  792. .HasColumnType("decimal(20,8)")
  793. .HasComment("收货下限比例(%)");
  794. b.Property<decimal?>("FRefCost")
  795. .HasPrecision(20, 8)
  796. .HasColumnType("decimal(20,8)")
  797. .HasComment("参考成本");
  798. b.Property<decimal?>("FRequestTimeZone")
  799. .HasPrecision(20, 8)
  800. .HasColumnType("decimal(20,8)")
  801. .HasComment("需求时界");
  802. b.Property<string>("FReserveType")
  803. .HasMaxLength(10)
  804. .HasColumnType("varchar(10)")
  805. .HasComment("预留类型");
  806. b.Property<string>("FSNCodeRule_Name")
  807. .HasMaxLength(80)
  808. .HasColumnType("varchar(80)")
  809. .HasComment("序列号编码规则");
  810. b.Property<string>("FSNUnit_Name")
  811. .HasMaxLength(10)
  812. .HasColumnType("varchar(10)")
  813. .HasComment("序列号单位");
  814. b.Property<decimal?>("FSafeStock")
  815. .HasPrecision(20, 8)
  816. .HasColumnType("decimal(20,8)")
  817. .HasComment("安全库存");
  818. b.Property<string>("FSalGroup_Name")
  819. .HasMaxLength(80)
  820. .HasColumnType("varchar(80)")
  821. .HasComment("销售分组");
  822. b.Property<string>("FSalePriceUnitId_Name")
  823. .HasMaxLength(10)
  824. .HasColumnType("varchar(10)")
  825. .HasComment("销售计价单位");
  826. b.Property<string>("FSaleUnitId_Name")
  827. .HasMaxLength(10)
  828. .HasColumnType("varchar(10)")
  829. .HasComment("销售单位");
  830. b.Property<string>("FSpecification_2052")
  831. .HasMaxLength(255)
  832. .HasColumnType("varchar(255)")
  833. .HasComment("规格型号");
  834. b.Property<string>("FStandHourUnitId")
  835. .HasMaxLength(10)
  836. .HasColumnType("varchar(10)")
  837. .HasComment("工时单位");
  838. b.Property<decimal?>("FStdLaborPrePareTime")
  839. .HasPrecision(20, 8)
  840. .HasColumnType("decimal(20,8)")
  841. .HasComment("标准人员准备工时");
  842. b.Property<decimal?>("FStdLaborProcessTime")
  843. .HasPrecision(20, 8)
  844. .HasColumnType("decimal(20,8)")
  845. .HasComment("标准人员实作工时");
  846. b.Property<decimal?>("FStdMachinePrepareTime")
  847. .HasPrecision(20, 8)
  848. .HasColumnType("decimal(20,8)")
  849. .HasComment("标准机器准备工时");
  850. b.Property<decimal?>("FStdMachineProcessTime")
  851. .HasPrecision(20, 8)
  852. .HasColumnType("decimal(20,8)")
  853. .HasComment("标准机器实作工时");
  854. b.Property<decimal?>("FStockCycle")
  855. .HasPrecision(20, 8)
  856. .HasColumnType("decimal(20,8)")
  857. .HasComment("复检周期");
  858. b.Property<string>("FStockId_Name")
  859. .HasMaxLength(80)
  860. .HasColumnType("varchar(80)")
  861. .HasComment("仓库");
  862. b.Property<string>("FStockLoc")
  863. .HasMaxLength(80)
  864. .HasColumnType("varchar(80)")
  865. .HasComment("仓位");
  866. b.Property<string>("FStockPlaceId_FF100002")
  867. .HasMaxLength(80)
  868. .HasColumnType("varchar(80)")
  869. .HasComment("仓位.客户.编码");
  870. b.Property<string>("FStockPlaceId_FF100002_Name")
  871. .HasMaxLength(80)
  872. .HasColumnType("varchar(80)")
  873. .HasComment("仓位.客户.名称");
  874. b.Property<string>("FStockPlaceId_FF100003")
  875. .HasMaxLength(80)
  876. .HasColumnType("varchar(80)")
  877. .HasComment("仓位.供应商.编码");
  878. b.Property<string>("FStockPlaceId_FF100003_Name")
  879. .HasMaxLength(80)
  880. .HasColumnType("varchar(80)")
  881. .HasComment("仓位.供应商.名称");
  882. b.Property<string>("FStockPlaceId_FF100004")
  883. .HasMaxLength(80)
  884. .HasColumnType("varchar(80)")
  885. .HasComment("仓位.服务机客户.编码");
  886. b.Property<string>("FStockPlaceId_FF100004_Name")
  887. .HasMaxLength(80)
  888. .HasColumnType("varchar(80)")
  889. .HasComment("仓位.服务机客户.名称");
  890. b.Property<string>("FStoreUnitID_Name")
  891. .HasMaxLength(10)
  892. .HasColumnType("varchar(10)")
  893. .HasComment("库存单位");
  894. b.Property<string>("FSubBillType_Name")
  895. .HasMaxLength(10)
  896. .HasColumnType("varchar(10)")
  897. .HasComment("委外类型");
  898. b.Property<string>("FSubconPriceUnitId_Name")
  899. .HasMaxLength(10)
  900. .HasColumnType("varchar(10)")
  901. .HasComment("委外计价单位");
  902. b.Property<string>("FSubconUnitId_Name")
  903. .HasMaxLength(10)
  904. .HasColumnType("varchar(10)")
  905. .HasComment("委外单位");
  906. b.Property<string>("FSuite")
  907. .HasMaxLength(1)
  908. .HasColumnType("varchar(1)")
  909. .HasComment("套件");
  910. b.Property<string>("FSupplySourceId_Name")
  911. .HasMaxLength(80)
  912. .HasColumnType("varchar(80)")
  913. .HasComment("供应来源");
  914. b.Property<string>("FTaxCategoryCodeId_Name")
  915. .HasMaxLength(80)
  916. .HasColumnType("varchar(80)")
  917. .HasComment("税收分类编码");
  918. b.Property<string>("FTaxDiscountsType")
  919. .HasMaxLength(80)
  920. .HasColumnType("varchar(80)")
  921. .HasComment("税收优惠政策类型");
  922. b.Property<string>("FTaxRateId_Name")
  923. .HasMaxLength(80)
  924. .HasColumnType("varchar(80)")
  925. .HasComment("默认税率");
  926. b.Property<string>("FTaxType_Name")
  927. .HasMaxLength(80)
  928. .HasColumnType("varchar(80)")
  929. .HasComment("税分类");
  930. b.Property<string>("FTimeFactorId_Name")
  931. .HasMaxLength(80)
  932. .HasColumnType("varchar(80)")
  933. .HasComment("时间紧迫系数");
  934. b.Property<string>("FUnValidateExpQty")
  935. .HasMaxLength(1)
  936. .HasColumnType("varchar(1)")
  937. .HasComment("不参与可发量统计");
  938. b.Property<string>("FUseOrgId_Name")
  939. .HasMaxLength(80)
  940. .HasColumnType("varchar(80)")
  941. .HasComment("使用组织");
  942. b.Property<string>("FUseStatus")
  943. .HasMaxLength(255)
  944. .HasColumnType("varchar(255)")
  945. .HasComment("数据状态");
  946. b.Property<decimal?>("FVOLUME")
  947. .HasPrecision(20, 8)
  948. .HasColumnType("decimal(20,8)")
  949. .HasComment("体积");
  950. b.Property<string>("FVOLUMEUNITID_Name")
  951. .HasMaxLength(10)
  952. .HasColumnType("varchar(10)")
  953. .HasComment("尺寸单位");
  954. b.Property<decimal?>("FVarLeadTime")
  955. .HasPrecision(20, 8)
  956. .HasColumnType("decimal(20,8)")
  957. .HasComment("变动提前期");
  958. b.Property<decimal?>("FVarLeadTimeLotSize")
  959. .HasPrecision(20, 8)
  960. .HasColumnType("decimal(20,8)")
  961. .HasComment("变动提前期批量");
  962. b.Property<string>("FVarLeadTimeType")
  963. .HasMaxLength(10)
  964. .HasColumnType("varchar(10)")
  965. .HasComment("变动提前期单位");
  966. b.Property<decimal?>("FWARRANTY")
  967. .HasPrecision(20, 8)
  968. .HasColumnType("decimal(20,8)")
  969. .HasComment("保修期");
  970. b.Property<string>("FWARRANTYUNITID")
  971. .HasMaxLength(10)
  972. .HasColumnType("varchar(10)")
  973. .HasComment("保修期单位");
  974. b.Property<string>("FWEIGHTUNITID_Name")
  975. .HasMaxLength(10)
  976. .HasColumnType("varchar(10)")
  977. .HasComment("重量单位");
  978. b.Property<decimal?>("FWIDTH")
  979. .HasPrecision(20, 8)
  980. .HasColumnType("decimal(20,8)")
  981. .HasComment("宽");
  982. b.Property<string>("FWorkShopId_Name")
  983. .HasMaxLength(80)
  984. .HasColumnType("varchar(80)")
  985. .HasComment("生产车间");
  986. b.Property<decimal?>("FWriteOffQty")
  987. .HasPrecision(20, 8)
  988. .HasColumnType("decimal(20,8)")
  989. .HasComment("冲销数量");
  990. b.Property<string>("F_BZGG")
  991. .HasMaxLength(255)
  992. .HasColumnType("varchar(255)")
  993. .HasComment("包装规格");
  994. b.Property<string>("F_CPFL_Name")
  995. .HasMaxLength(80)
  996. .HasColumnType("varchar(80)")
  997. .HasComment("产品分类");
  998. b.Property<string>("F_CPPLLB")
  999. .HasMaxLength(80)
  1000. .HasColumnType("varchar(80)")
  1001. .HasComment("产品披露类别");
  1002. b.Property<string>("F_CPX_Name")
  1003. .HasMaxLength(80)
  1004. .HasColumnType("varchar(80)")
  1005. .HasComment("产品线");
  1006. b.Property<string>("F_DYDWLX")
  1007. .HasMaxLength(80)
  1008. .HasColumnType("varchar(80)")
  1009. .HasComment("电压/电网类型");
  1010. b.Property<string>("F_DZLSX")
  1011. .HasMaxLength(80)
  1012. .HasColumnType("varchar(80)")
  1013. .HasComment("电子料属性");
  1014. b.Property<string>("F_GLD_Name")
  1015. .HasMaxLength(80)
  1016. .HasColumnType("varchar(80)")
  1017. .HasComment("功率段");
  1018. b.Property<DateTime?>("F_GSZHGGRQ")
  1019. .HasColumnType("datetime(6)")
  1020. .HasComment("工时最后更改日期");
  1021. b.Property<string>("F_GSZHGGR_Name")
  1022. .HasMaxLength(80)
  1023. .HasColumnType("varchar(80)")
  1024. .HasComment("工时最后更改人");
  1025. b.Property<string>("F_GWLH_Name")
  1026. .HasMaxLength(80)
  1027. .HasColumnType("varchar(80)")
  1028. .HasComment("根物料号");
  1029. b.Property<string>("F_GYS")
  1030. .HasMaxLength(255)
  1031. .HasColumnType("varchar(255)")
  1032. .HasComment("供应商");
  1033. b.Property<decimal?>("F_HLBZL")
  1034. .HasPrecision(20, 8)
  1035. .HasColumnType("decimal(20,8)")
  1036. .HasComment("回料包装量");
  1037. b.Property<string>("F_JCYY")
  1038. .HasMaxLength(255)
  1039. .HasColumnType("varchar(255)")
  1040. .HasComment("禁采原因");
  1041. b.Property<string>("F_JWLBMU8")
  1042. .HasMaxLength(80)
  1043. .HasColumnType("varchar(80)")
  1044. .HasComment("旧物料编码U8");
  1045. b.Property<string>("F_PP_Name")
  1046. .HasMaxLength(255)
  1047. .HasColumnType("varchar(255)")
  1048. .HasComment("品牌");
  1049. b.Property<string>("F_SFJLPCH")
  1050. .HasMaxLength(1)
  1051. .HasColumnType("varchar(1)")
  1052. .HasComment("是否记录批次号");
  1053. b.Property<string>("F_SMZQ")
  1054. .HasMaxLength(80)
  1055. .HasColumnType("varchar(80)")
  1056. .HasComment("料号生命周期");
  1057. b.Property<DateTime?>("F_SMZQZHGGRQ")
  1058. .HasColumnType("datetime(6)")
  1059. .HasComment("生命周期最后更改日期");
  1060. b.Property<string>("F_SMZQZHGGR_Name")
  1061. .HasMaxLength(80)
  1062. .HasColumnType("varchar(80)")
  1063. .HasComment("生命周期最后更改人");
  1064. b.Property<DateTime?>("F_TJZLZHGGRQ")
  1065. .HasColumnType("datetime(6)")
  1066. .HasComment("体积重量最后更改日期");
  1067. b.Property<string>("F_TJZLZHGGR_Name")
  1068. .HasMaxLength(80)
  1069. .HasColumnType("varchar(80)")
  1070. .HasComment("体积重量最后更改人");
  1071. b.Property<string>("F_WLLX")
  1072. .HasMaxLength(10)
  1073. .HasColumnType("varchar(10)")
  1074. .HasComment("物料类型");
  1075. b.Property<string>("F_WLSQR_Name")
  1076. .HasMaxLength(80)
  1077. .HasColumnType("varchar(80)")
  1078. .HasComment("物料申请人");
  1079. b.Property<string>("F_XSXH_2052")
  1080. .HasMaxLength(80)
  1081. .HasColumnType("varchar(80)")
  1082. .HasComment("SAJ型号");
  1083. b.Property<string>("F_YWLX")
  1084. .HasMaxLength(80)
  1085. .HasColumnType("varchar(80)")
  1086. .HasComment("业务类型");
  1087. b.Property<string>("F_YXQG")
  1088. .HasMaxLength(1)
  1089. .HasColumnType("varchar(1)")
  1090. .HasComment("允许请购");
  1091. b.Property<string>("F_YXSL")
  1092. .HasMaxLength(1)
  1093. .HasColumnType("varchar(1)")
  1094. .HasComment("允许收料");
  1095. b.Property<string>("F_YZSG")
  1096. .HasMaxLength(10)
  1097. .HasColumnType("varchar(10)")
  1098. .HasComment("已终审过");
  1099. b.Property<decimal?>("F_ZJCSGS")
  1100. .HasPrecision(20, 8)
  1101. .HasColumnType("decimal(20,8)")
  1102. .HasComment("整机测试工时");
  1103. b.Property<string>("F_ZJGLWLH_Name")
  1104. .HasMaxLength(80)
  1105. .HasColumnType("varchar(80)")
  1106. .HasComment("直接关联物料号");
  1107. b.Property<decimal?>("F_ZJZB_Name")
  1108. .HasPrecision(20, 8)
  1109. .HasColumnType("decimal(20,8)")
  1110. .HasComment("整机质保(月)");
  1111. b.Property<decimal?>("F_ZYGS")
  1112. .HasPrecision(20, 8)
  1113. .HasColumnType("decimal(20,8)")
  1114. .HasComment("作业工时");
  1115. b.HasKey("Id");
  1116. b.ToTable("material", (string)null);
  1117. b.HasComment("物料");
  1118. });
  1119. #pragma warning restore 612, 618
  1120. }
  1121. }
  1122. }