/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.ComponentModel.DataAnnotations; using SqlSugar; namespace CoreCms.Net.Model.Entities { /// /// 库存操作表 /// public partial class CoreCmsStock { /// /// 操作员昵称 /// [Display(Name = "操作员昵称")] [SugarColumn(IsIgnore = true)] public string managerName { get; set; } /// /// 经销商id /// [Display(Name = "经销商id")] [SugarColumn(IsIgnore = true)] public int distributionId { get; set; } } }