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.
15 lines
349 B
15 lines
349 B
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxerp_MaxbatchNO
|
|
{
|
|
[Key]
|
|
public int xxerp_uid { get; set; }
|
|
public string tablename { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
public int MaxdibatchNO { get; set; }
|
|
|
|
}
|
|
}
|
|
|