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.

25 lines
506 B
C#

using SqlSugar;
namespace DS.WMS.Core.Sys.Entity;
/// <summary>
/// 用户与航线对应关系
/// </summary>
[SqlSugar.SugarTable("sys_user_lane")]
public class SysUserLane
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 用户id
/// </summary>
public long? UserId { get; set; }
/// <summary>
/// 航线Id
/// </summary>
public long? LaneId { get; set; }
}