12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models.Entity.LotteryNumDB
- {
- [ZXTableName("KJDataBase.DT_TrendChart")]
- public class DT_TrendChart
- {
- [Key(true)]
- public int Id { get; set; }
- [IsInsert()]
- public string Name { get; set; }
- [IsInsert()]
- public int Cid { get; set; }
- [IsInsert()]
- public int Tid { get; set; }
- [IsInsert()]
- public int Status { get; set; }
- [IsInsert()]
- public int OrderBy { get; set; }
- [IsInsert()]
- public string Url { get; set; }
- [IsInsert()]
- public int type { get; set; }
- [IsInsert()]
- public string hTitle { get; set; }
- [IsInsert()]
- public string hKeywords { get; set; }
- [IsInsert()]
- public string hDescription { get; set; }
- [IsInsert()]
- public int Direction { get; set; }
- [IsInsert()]
- public int TemplateId { get; set; }
- }
- }
|