using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models.Entity.LottomatBaseDB { [ZXTableName("ZXDataBase.Base_TrendChart")] public class Base_TrendChart { [Key(true)] [IsInsert(false)] public int PK { get; set; } [IsInsert] public string Id { get; set; } [IsInsert] public string Title { get; set; } [IsInsert] public string TrendChartUrl { get; set; } [IsInsert] public string CreateUserName { get; set; } [IsInsert] public DateTime CreateDate { get; set; } [IsInsert] public string CreateUserId { get; set; } [IsInsert] public string CategoryId { get; set; } [IsInsert] public int IsDelete { get; set; } [IsInsert] public string Remark { get; set; } [IsInsert] public int SortCode { get; set; } [IsInsert] public int IsStick { get; set; } } }