终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

20 řádky
366 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.Academy.Model
  8. {
  9. public class SqliteBase : NotifyBase
  10. {
  11. public DateTime Createtime { get; set; }
  12. [SugarColumn(IsPrimaryKey = true)]
  13. public string Id { get; set; }
  14. }
  15. }