using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.StructuredDB.MES
{
public class SalesOrdMaster
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 订单号
///
public string SalesOrd { get; set; }
///
/// 类型
///
public string SOType { get; set; }
///
/// 发至
///
public string ShipTo { get; set; }
///
/// 销往
///
public string SoldTo { get; set; }
///
/// 日期
///
public DateTime? OrdDate { get; set; }
///
/// 状态
///
public string ActionStatus { get; set;}
///
/// 创建时间
///
[Comment("创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 修改时间
///
[Comment("修改时间")]
public DateTime? UpdateTime { get; set; }
///
/// 创建人
///
[Comment("创建人")]
public string CreateUser { get; set; }
///
/// 修改人
///
[Comment("修改人")]
public string UpdateUser { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 有效
///
[Comment("有效")]
public bool IsActive { get; set; }
///
/// 确认
///
[Comment("确认")]
public bool IsConfirm { get; set; }
}
}