using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Utils.Attributes;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class ProductTeam : Base
|
|
{
|
|
public override string TableName
|
|
{
|
|
get { return TableNames.生产班组; }
|
|
}
|
|
|
|
public long ProductTeam_ID { get; set; }
|
|
public string Name { get; set; }
|
|
public string ProduceType { get; set; }
|
|
public string ClientNode { get; set; }
|
|
public long? Employee_ID { get; set; }
|
|
public int RowVersion { get; set; }
|
|
|
|
}
|
|
}
|