天肉客户端
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.
 

29 lines
644 B

using System;
using System.Data;
using Forks.EnterpriseServices;
using Forks.EnterpriseServices.DomainObjects2;
namespace BLUtil
{
[MapToTable("Weight")]
public class WeightTable {
public long ID { get; set; }
public long Goods_ID { get; set; }
public string Goods_Name { get; set; }
public string Goods_Code { get; set; }
public string Unit { get; set; }
public decimal? Weight { get; set; }
[LogicName("ÈÕÆÚ")]
[DbColumn(DbType = SqlDbType.DateTime)]
public DateTime DateTime { get; set; }
[LogicName("˳ÐòºÅ")]
public long Sequence { get; set; }
}
}