- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace OrderSystem.Entity
- {
- public partial class VxContractInfo
- {
- public string 客户名称 { get; set; }
- public string 客户号码 { get; set; }
- public string 合同号 { get; set; }
- public int? 图纸数 { get; set; }
- public string 订单状态 { get; set; }
- }
- }
|