1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MainModels
- {
- public partial class BrokenMachineChange
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public string OutStoreManagerMobile { get; set; }
- public string OutStoreManager { get; set; }
- public string OutStoreAddress { get; set; }
- public string OutStoreAreas { get; set; }
- public string OutStoreName { get; set; }
- public int OutStoreId { get; set; }
- public string OutProductName { get; set; }
- public int OutProductType { get; set; }
- public int BackStoreUserId { get; set; }
- public string Remark { get; set; }
- public string BackStoreName { get; set; }
- public int BackStoreId { get; set; }
- public string ChangeSnExpand { get; set; }
- public string OrderExpand { get; set; }
- public DateTime? CompleteTime { get; set; }
- public string AuditRemark { get; set; }
- public int AuditResult { get; set; }
- public DateTime? AuditTime { get; set; }
- public string AuditBy { get; set; }
- public DateTime? ChangeTime { get; set; }
- public int ChangeDeviceNum { get; set; }
- public string ChangeDeviceName { get; set; }
- public string BackProductName { get; set; }
- public int BackProductType { get; set; }
- public int UserId { get; set; }
- public string ChangeNo { get; set; }
- }
- }
|