You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
675 B
C#
22 lines
675 B
C#
using SqlSugar;
|
|
|
|
namespace OpenAuth.Repository.Domain;
|
|
|
|
[SugarTable("lasa_taskassign")]
|
|
public class LasaTaskAssign
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
public string Bid { get; set; }
|
|
public string Tid { get; set; }
|
|
public string FlightId { get; set; }
|
|
public string GatewaySn { get; set; }
|
|
public string AirlineId { get; set; }
|
|
public short? Status { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
public string Reason { get; set; }
|
|
public string TaskId { get; set; }
|
|
public string Md5 { get; set; }
|
|
public string Wpml { get; set; }
|
|
} |