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.
 
 
 
 
 

74 lines
2.0 KiB

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
using System;
using System.Collections.Generic;
public partial class TB_PENING_ITEMS
{
public TB_PENING_ITEMS()
{
UserInAddress = new List<string>();
UserInVendIds = new List<string>();
}
[Column(Order = 0)]
[StringLength(50)]
public string ITEM_NO { get; set; }
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int UID { get; set; }
[StringLength(50)]
public string ITEM_CONTENT { get; set; }
public int ITEM_TYPE { get; set; }
[StringLength(50)]
public string SENDER { get; set; }
public System.DateTime SENDING_TIME { get; set; }
public int MESSAGE_STATE { get; set; }
public int ITEM_STATE { get; set; }
[StringLength(100)]
public string ITEM_ADDRESS { get; set; }
[StringLength(50)]
public string RENEWER { get; set; }
public Nullable<System.DateTime> RENEW_TIME { get; set; }
public string MEMO { get; set; }
[StringLength(50)]
public string ORDER_NO { get; set; }
[StringLength(50)]
public string SEND_NO { get; set; }
[StringLength(50)]
public string INVOICE_NO { get; set; }
[StringLength(50)]
public string ROLE_NAME { get; set; }
[StringLength(50)]
public string VEND_ID { get; set; }
[StringLength(50)]
public string USER_ID { get; set; }
public Guid GUID{ get; set; }
[StringLength(50)]
public string EXTEND5 { get; set; }
[NotMapped]
public List<string> UserInAddress { set; get; }
[NotMapped]
public List<string> UserInVendIds { set; get; }
[NotMapped]
public List<string> UserInRoles { set; get; }
}
}