namespace DOAN.Model.Factory_Model
{
///
/// 车间
///
[SugarTable("base_workshop")]
public class BaseWorkshop
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 所属公司id
///
[SugarColumn(ColumnName = "fk_company_id")]
public int? FkCompanyId { get; set; }
///
/// 车间代码
///
[SugarColumn(ColumnName = "workshop_code")]
public string WorkshopCode { get; set; }
///
/// 车间名称
///
[SugarColumn(ColumnName = "workshop_name")]
public string WorkshopName { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 状态
///
public int? Status { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}