Zxd.Core/code/Zxd.Entity/Crm/UserModule.cs

25 lines
624 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Crm
{
[Table("t_user_module")]
public class UserModule
{
[Key]
public string? moduleid { get; set; }
[Key]
public string? orderid { get; set; }
public string? username { get; set; }
public string? productid { get; set; }
public long? starttime { get; set; }
public long endtime { get; set; }
public DateTime? auto_updateTime { get; set; }
public DateTime? update_time { get; set; }
}
}