using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Autobom
{
public class TN_AB_B_AUXILIARY_UNITEntity
{
///
/// 唯一码
///
public string CN_GUID { get; set; }
///
/// 物料编码
///
public string CN_S_ITEM_CODE { get; set; }
///
/// 计量单位
///
public string CN_S_UNIT { get; set; }
///
/// 换算数量
///
public decimal? CN_F_CONVERT_QTY { get; set; }
///
/// 是否启用
///
// public string CN_C_IS_USE { get; set; }
///
/// 创建人
///
public string CN_S_CREATOR { get; set; }
///
/// 创建人姓名
///
public string CN_S_CREATOR_BY { get; set; }
///
/// 创建日期
///
public DateTime? CN_T_CREATE { get; set; }
}
}