You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
using System;
|
|
using PetaPoco;
|
|
|
|
namespace Pingchuan.BeijingSafeguard.Model
|
|
{
|
|
[TableName("tags")]
|
|
public class Tag
|
|
{
|
|
[Column("id")]
|
|
public int Id { get; set; }
|
|
|
|
[Column("user_id")]
|
|
public int UserId { get; set; }
|
|
|
|
[Column("task_id")]
|
|
public string TaskId { get; set; }
|
|
|
|
[Column("name")]
|
|
public string Name { get; set; }
|
|
|
|
[Column("create_time")]
|
|
public DateTime? CreateTime { get; set; }
|
|
}
|
|
}
|