Commit 6f8ceb22 by lizefeng

新增偏差分析的数据库实体

parent 993918e9
using System;
using System.Collections.Generic;
using System.Text;
namespace AutoTurnOver.DB
{
/// <summary>
/// 偏差分析
/// </summary>
public class dc_ana_deviation
{
public long id { get; set; }
public string sku { get; set; }
public string project { get; set; }
public string field { get; set; }
public decimal val { get; set; }
public DateTime bdate { get; set; }
public DateTime edate { get; set; }
public string date_str { get; set; }
public DateTime _ts { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace AutoTurnOver.DB
{
/// <summary>
/// 需要进行偏差分析的sku
/// </summary>
public class dc_ana_deviation_sku
{
public int id { get; set; }
public string sku { get; set; }
public string platform { get; set; }
public string site { get; set; }
public string account { get; set; }
public string product { get; set; }
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment