Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 rader
336 B

  1. using BPA.Model.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.Model
  8. {
  9. public class RawMaterModel : RawMaterTB
  10. {
  11. /// <summary>
  12. /// 需求重量
  13. /// </summary>
  14. public ushort Weight { get; set; }
  15. }
  16. }