¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å3:15:25 |
| | | * @desc : å®¢æ·æ¡£æ¡ |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// å®¢æ·æ¡£æ¡ |
| | | /// </summary> |
| | | [Table("base_customer")] |
| | | [Comment("å®¢æ·æ¡£æ¡")] |
| | | public class BaseCustomer : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·ç¼å· |
| | | /// </summary> |
| | | [Comment("客æ·ç¼å·")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·ä¸æåç§° |
| | | /// </summary> |
| | | [Comment("客æ·ä¸æåç§°")] |
| | | [Required] |
| | | [MaxLength(255)] |
| | | public string CustChinaName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·è±æåç§° |
| | | /// </summary> |
| | | [Comment("客æ·è±æåç§°")] |
| | | [MaxLength(255)] |
| | | public string CustEnglishName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å©è®°ç |
| | | /// </summary> |
| | | [Comment("å©è®°ç ")] |
| | | [MaxLength(255)] |
| | | public string MnemonicCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç±»å |
| | | /// </summary> |
| | | [Comment("ç±»å")] |
| | | [Required] |
| | | |
| | | public int CustType { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç±»ååç§° |
| | | /// </summary> |
| | | [Comment("ç±»ååç§°")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustTypeName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è系人 |
| | | /// </summary> |
| | | [Comment("è系人")] |
| | | [MaxLength(50)] |
| | | public string LinkMan { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// çµè¯ |
| | | /// </summary> |
| | | [Comment("çµè¯")] |
| | | [MaxLength(50)] |
| | | public string Phone { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// çµåé®ä»¶ |
| | | /// </summary> |
| | | [Comment("çµåé®ä»¶")] |
| | | [MaxLength(50)] |
| | | public string Email { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// é®ç¼ |
| | | /// </summary> |
| | | [Comment("é®ç¼")] |
| | | [MaxLength(50)] |
| | | public string ZipCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç份 |
| | | /// </summary> |
| | | [Comment("ç份")] |
| | | [MaxLength(50)] |
| | | public string Province { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// åå¸ |
| | | /// </summary> |
| | | [Comment("åå¸")] |
| | | [MaxLength(50)] |
| | | public string City { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å°å |
| | | /// </summary> |
| | | [Comment("å°å")] |
| | | [MaxLength(255)] |
| | | public string Address { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |