BusinessExtMigrationDbContextModelSnapshot.cs 64 KB

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