VxContractInfo.cs 393 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace OrderSystem.Entity
  5. {
  6. public partial class VxContractInfo
  7. {
  8. public string 客户名称 { get; set; }
  9. public string 客户号码 { get; set; }
  10. public string 合同号 { get; set; }
  11. public int? 图纸数 { get; set; }
  12. public string 订单状态 { get; set; }
  13. }
  14. }