屠宰场管理服务
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.

28 lines
716 B

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; }
}
}