1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models.Entity.LotteryNumDB
- {
- [ZXTableName("KJDataBase.L_TDK")]
- public class L_TDK
- {
- [Key(true)]
- public int Id { get; set; }
- [IsInsert()]
- public string PK { get; set; }
- [IsInsert()]
- public string TDKType { get; set; }
- [IsInsert()]
- public string Tags { get; set; }
- [IsInsert()]
- public string Description { get; set; }
- [IsInsert()]
- public string Keywords { get; set; }
- [IsInsert()]
- public DateTime Time { get; set; }
- [IsInsert()]
- public int Type { get; set; }
- [IsInsert()]
- public string Title { get; set; }
-
- }
- }
|