using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class ParaGoodsCategoryDto
{
///
/// 主键
///
public string Id { get; set; }
///
/// 品名分类代码
///
public string GoodsCategory { get; set; }
///
/// 品名分类名称
///
public string GoodsCategoryName { get; set; }
}
public class ParaGoodsCategoryShowDto: ParaGoodsCategoryDto
{
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 更新时间
///
public string UpdateTime { get; set; }
///
/// 创建者Id
///
public long CreateUserId { get; set; }
///
/// 创建者名称
///
public string CreateUserName { get; set; }
///
/// 修改者Id
///
public long UpdateUserId { get; set; }
///
/// 修改者名称
///
public string UpdateUserName { get; set; }
}
}