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.
57 lines
1.3 KiB
57 lines
1.3 KiB
4 years ago
|
using Coldairarrow.Entity.Enum;
|
||
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace Coldairarrow.Entity.HuiYan
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 比价任务日志
|
||
|
/// </summary>
|
||
|
[Table("pricetasklog")]
|
||
|
public class pricetasklog
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Key, Column(Order = 1)]
|
||
|
public String Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人Id
|
||
|
/// </summary>
|
||
|
public String CreatorId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 否已删除
|
||
|
/// </summary>
|
||
|
public Boolean Deleted { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分配的团队用户ID
|
||
|
/// </summary>
|
||
|
public String UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 团队商品的ID
|
||
|
/// </summary>
|
||
|
public String TeamItemId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 商品表ID
|
||
|
/// </summary>
|
||
|
public String ItemId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 比价状态
|
||
|
/// </summary>
|
||
|
public PriceTaskState State { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|