using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Waste.Domain.DataModel
{
[SugarTable("W_Product")]
public partial class W_Product
{
public W_Product()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string UserName { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Weight { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Image { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string UpperLimit { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Unit { get; set; }
///
/// Desc:
/// Default:NULL
/// Nullable:True
///
public string TimeStamp { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string TareWeight { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string RecordNo { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ProductNo { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ProductName { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ProductId { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string NetWeight { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string LowerLimit { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string IdNames { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string IdValues { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Date { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string DateTime { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Amount { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Uuid { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string UserId { get; set; }
public System.DateTime CreateTime { get; set; }
public string Video { get; set; }
}
}