You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.0 KiB
C#

using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "code_fee_color", DisableSyncStructure = true)]
public partial class CodeFeeColor {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string ID { get; set; } = Guid.NewGuid().ToString().ToUpper();
/// <summary>
/// 颜色
/// </summary>
[JsonProperty, Column(DbType = "varchar(60)")]
public string COLOR { get; set; }
/// <summary>
/// 费用状态
/// </summary>
[JsonProperty, Column(DbType = "varchar(8)", IsNullable = false)]
public string FEESTATU { get; set; }
/// <summary>
/// 是否允许修改
/// </summary>
[JsonProperty]
public bool ISEDIT { get; set; } = false;
/// <summary>
/// 序号
/// </summary>
[JsonProperty]
public short SORTNO { get; set; }
}
}