using Business.Core.Attributes;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
namespace Business.Domain
{
///
/// 在制占用明细
///
[CollectionName("dopbase", "b_mo_occupy")]
[Comment("在制占用明细")]
public class b_mo_occupy : BaseEntity
{
///
/// 物料检查明细ID
///
[Comment("物料检查明细ID")]
public long? bom_child_examine_id { get; set; }
///
/// 工单号
///
[StringLength(50)]
[Comment("工单号")]
public string moo_mo { get; set; }
///
/// 占用量
///
[Comment("占用量")]
[Precision(23, 10)]
public decimal? moo_qty { get; set; }
///
/// 开始时间
///
[Comment("开始时间")]
public DateTime? moo_stime { get; set; }
///
/// 结束时间
///
[Comment("结束时间")]
public DateTime? moo_etime { get; set; }
}
}