1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineAdvance
- {
- public int Id { get; set; }
- public string WarehouseName { get; set; }
- public string BrandName { get; set; }
- public int WarehouseId { get; set; }
- public int ToUserId { get; set; }
- public int SendUserId { get; set; }
- public int BrandId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|