12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Push
- {
- public partial class PushObj
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string FieldList { get; set; }
- public string TableName { get; set; }
- public int EncryptMode { get; set; }
- public string NoticeUrl { get; set; }
- public string Title { get; set; }
- public int MerchantId { get; set; }
- public int QueryId { get; set; }
- }
- }
|