27 lines
768 B
C#
27 lines
768 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("wx_empower_log")]
|
|
public class WX_EMPOWER_LOG
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string to_by_resid { get; set; }
|
|
public int from_by_eid { get; set; }
|
|
public int to_by_eid { get; set; }
|
|
public int type { get; set; }
|
|
public DateTime created_time { get; set; }
|
|
public int duration { get; set; }
|
|
public string? product_name { get; set; }
|
|
public int product_id { get; set; }
|
|
public string order_id { get; set; }
|
|
public string softusername { get; set;}
|
|
public string appid { get; set;}
|
|
}
|
|
}
|