using Forks.EnterpriseServices;
|
|
using Forks.EnterpriseServices.DataForm;
|
|
using Forks.EnterpriseServices.DomainObjects2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BWP.B3ClientService.BO
|
|
{
|
|
[DFClass,Serializable]
|
|
[LogicName("存货")]
|
|
public class Goods : B3Frameworks.BO.BaseInfo, B3Frameworks.BO.IWithCodeBaseInfo
|
|
{
|
|
[LogicName("编码")]
|
|
[DFNotEmpty]
|
|
[DbColumn(DbType = SqlDbType.NVarChar, AllowNull = false, Unique = true)]
|
|
public string Code { get; set; }
|
|
|
|
[LogicName("规格")]
|
|
public string Spec { get; set; }
|
|
|
|
[LogicName("主单位")]
|
|
[DFNotEmpty]
|
|
public string MainUnit { get; set; }
|
|
}
|
|
}
|