22 lines
462 B
C#
22 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class AdditionalServiceNotice : BeWoEntityBase
|
|
{
|
|
|
|
public AdditionalServiceNotice()
|
|
{
|
|
this._Tid = TableID.AdditionalServiceNotice;
|
|
}
|
|
|
|
public virtual long? RegionOid { get; set; }
|
|
|
|
public virtual long? CustomerOid { get; set; }
|
|
|
|
public virtual DateTime Monat { get; set; }
|
|
}
|
|
} |