using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Waste.Application.ThirdApiInfo
{
public class ProductInfoDto
{
public decimal amount { get; set; }
///
///
///
public string date { get; set; }
///
///
///
public string dateTime { get; set; }
///
///
///
public long id { get; set; }
///
/// 规格,参数名称,
///
public string idNames { get; set; }
///
/// 545677,参数值,
///
public string idValues { get; set; }
///
///
///
public bool isUpload { get; set; }
///
///
///
public int level { get; set; }
///
///
///
public decimal lowerLimit { get; set; }
///
///
///
public decimal netWeight { get; set; }
///
///
///
public long productId { get; set; }
///
///
///
public string productName { get; set; }
///
///
///
public string productNo { get; set; }
///
///
///
public long recordNo { get; set; }
///
///
///
public long startDate { get; set; }
///
///
///
public int status { get; set; }
///
///
///
public decimal tareWeight { get; set; }
///
///
///
public string time { get; set; }
///
///
///
public long timeStamp { get; set; }
///
///
///
public string unit { get; set; }
///
///
///
public decimal upperLimit { get; set; }
///
///
///
public long userId { get; set; }
///
/// 技术员
///
public string userName { get; set; }
///
///
///
public string uuid { get; set; }
///
///
///
public decimal weight { get; set; }
///
///
///
public string image { get; set; }
///
/// 新增:操作权限控制(必须传 true/false,其他值或未传会报错)
///
public bool uploadPermission { get; set; } // 直接 bool,不可空
public string Video { get; set; }
}
}