You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
[Serializable]
|
|
public class RecordEntity
|
|
{
|
|
public RecordEntity()
|
|
{
|
|
UserInAddress = new List<string>();
|
|
UserInVendIds = new List<string>();
|
|
BillStateList = new List<int>();
|
|
}
|
|
public System.DateTime CreateTime { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CreateUser { get; set; }
|
|
public Nullable<System.DateTime> UpdateTime { get; set; }
|
|
[StringLength(50)]
|
|
public string UpdateUser { get; set; }
|
|
[StringLength(50)]
|
|
public string UpdateInfo { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public System.Guid GUID { get; set; }
|
|
[NotMapped]
|
|
public List<string> UserInAddress { set; get; }
|
|
|
|
[NotMapped]
|
|
public List<string> UserInVendIds { set; get; }
|
|
|
|
|
|
[NotMapped]
|
|
public List<int> BillStateList { set; get; }
|
|
|
|
}
|
|
}
|
|
|