30 lines
932 B
C#
30 lines
932 B
C#
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;
|
|
using WalkingTec.Mvvm.Core;
|
|
|
|
namespace wtmProject.Model
|
|
{
|
|
/// <summary>
|
|
/// WTM_BILLING_LIST_YEAR
|
|
/// </summary>
|
|
[Table("WTM_BILLING_LIST_YEAR")]
|
|
public class WTM_BILLING_LIST_YEAR : BasePoco, ITenant
|
|
{
|
|
[Display(Name = "_Admin.Tenant")]
|
|
[StringLength(50, ErrorMessage = "Validate.{0}stringmax{1}")]
|
|
public string TenantCode { get; set; }
|
|
[Display(Name = "年度")]
|
|
[StringLength(50, ErrorMessage = "Validate.{0}stringmax{1}")]
|
|
public string YEAR { get; set; }
|
|
|
|
[Display(Name = "目标金额(万元)")]
|
|
[Column(TypeName = "decimal(18, 2)")]
|
|
public decimal? TargetAmount { get; set; }
|
|
}
|
|
}
|