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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace djy.Paas.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Dto基础
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BaseDto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; } = 0;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Guid主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Guid? Gid { get; set; } = null;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据状态 -1删除 0为不可用 1正常 1-99为各种状态 100为完成
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual short Status { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间戳秒级
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long AddTime { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间戳
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long UpTime
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<Guid?> Gidlist { get; set; }=new List<Guid?>();
|
|
|
|
|
}
|
|
|
|
|
}
|