using MongoDB.Bson;
|
using MongoDB.Bson.Serialization.Attributes;
|
using Newtonsoft.Json;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WMS.Entitys.Algorithm
|
{
|
[BsonIgnoreExtraElements]
|
public class TN_AB_B_ITEM_PRICEEntity
|
{
|
[JsonIgnore]
|
public ObjectId _id
|
{
|
get;
|
set;
|
}
|
|
public string CN_GUID { get; set; }
|
public string CN_S_ITEM_CODE { get; set; }
|
public string CN_S_PRICE_TYPE { get; set; }
|
public string CN_S_PRICE_STEP { get; set; }
|
public string CN_F_PRICE { get; set; }
|
public string CN_S_REMARK { get; set; }
|
public string CN_S_FROM { get; set; }
|
public string CN_S_CREATOR { get; set; }
|
public string CN_S_CREATOR_NAME { get; set; }
|
public DateTime CN_T_CREATOR { get; set; }
|
public string CN_S_MENDER { get; set; }
|
public string CN_S_MODIFY_BY { get; set; }
|
public DateTime CN_T_MODIFY { get; set; }
|
|
}
|
}
|