21 lines
494 B
C#
21 lines
494 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BackupAndImport.Entitys.annaer_cloud
|
|
{
|
|
public class fission
|
|
{
|
|
public string creation_time { get; set; }
|
|
public string sj_wxid { get; set; }
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string xj_wxid { get; set; }
|
|
public string channel { get; set; }
|
|
public string my_user { get; set; }
|
|
|
|
}
|
|
}
|