using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.Base
{
///
///
///
public abstract class SoftBaseEntity : BaseEntity
{
///
/// 是否删除(0有效1删除)
///
public int IsDelete { set; get; }
}
}