package com.newfiber.api.pc.model.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; import com.newfiber.api.core.utils.PageUtil; import lombok.Data; import java.io.Serializable; import java.util.Date; @Data @TableName("sys_jurisdiction") public class SysJurisdiction extends PageUtil implements Serializable{ @TableId(value = "serial",type = IdType.AUTO) private Long serial; @TableField("jurisdiction_no") private String jurisdictionNo; @TableField("jurisdiction_name") private String jurisdictionName; @TableField("jurisdiction_type") private int jurisdictionType; @TableField("jurisdiction_type_zn") private String jurisdictionTypeZn; @TableField("jurisdiction_state") private int jurisdictionState; @TableField("jurisdiction_state_zn") private String jurisdictionStateZn; @TableField("remark") private String remark; @TableField("order_sort") private int orderSort ; @TableField("create_time") private Date createTime; @TableField("upate_time") private Date updateTime; @TableField(exist = false) private String roleNo; @TableField(exist = false) private String orgNo; @TableField(exist = false) private String Type; }