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.
30 lines
604 B
30 lines
604 B
4 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
public partial class TL_BILL
|
||
|
{
|
||
|
[Key]
|
||
|
public long UID { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(80)]
|
||
|
public string OperName { get; set; }
|
||
|
|
||
|
public DateTime LogTime { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(50)]
|
||
|
public string LogType { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(50)]
|
||
|
public string BillNum { get; set; }
|
||
|
|
||
|
public int BillType { get; set; }
|
||
|
|
||
|
public string Message { get; set; }
|
||
|
}
|
||
|
}
|