- 企业车辆管理系统mysql数据库创建语句
- 企业车辆管理系统oracle数据库创建语句
- 企业车辆管理系统sqlserver数据库创建语句
- 企业车辆管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计
- 企业车辆管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计
登录注册界面.jpg?x-oss-process=style/00001)
企业车辆管理系统mysql数据库版本源码:
超级管理员表创建语句如下:
create table t_admin(
id int primary key auto_increment comment '主键',
username varchar(100) comment '超级管理员账号',
password varchar(100) comment '超级管理员密码'
) comment '超级管理员';
insert into t_admin(username,password) values('admin','123456');
车辆表创建语句如下:
create table t_car(
id int primary key auto_increment comment '主键',
carName varchar(100) comment '车辆编号',
pp varchar(100) comment '品牌',
xh varchar(100) comment '型号',
sccj varchar(100) comment '生产厂家',
ccrq varchar(100) comment '出厂日期',
cp varchar(100) comment '车牌',
status varchar(100) comment '状态'
) comment '车辆';
车辆费用表创建语句如下:
create table t_carlist(
id int primary key auto_increment comment '主键',
carName varchar(100) comment '车辆编号',
showDate datetime comment '保养日期',
content text comment '保养说明',
fee int comment '保养费用',
lx varchar(100) comment ''
) comment '车辆费用';
员工表创建语句如下:
create table t_customer(
id int primary key auto_increment comment '主键',
username varchar(100) comment '账号',
password varchar(100) comment '密码',
customerName varchar(100) comment '姓名',
headPic varchar(100) comment '头像',
phone varchar(100) comment '电话',
age varchar(100) comment '年龄',
sex varchar(100) comment '',
js varchar(100) comment ''
) comment '员工';
司机奖励惩罚表创建语句如下:
create table t_jlcf(
id int primary key auto_increment comment '主键',
customerId int comment '司机',
showDate datetime comment '操作日期',
content text comment '说明',
fee int comment '金额',
lx varchar(100) comment ''
) comment '司机奖励惩罚';
用车申请表创建语句如下:
create table t_order(
id int primary key auto_increment comment '主键',
customerId int comment '申请人',
orderNum varchar(100) comment '订单编号',
title varchar(100) comment '申请标题',
content text comment '详细说明',
jwd varchar(100) comment '经纬度',
showDate datetime comment '用车日期',
status varchar(100) comment '状态',
spy varchar(100) comment '审批员',
spyDate datetime comment '审批日期',
carName varchar(100) comment '车辆编号',
sjId int comment '司机',
ddy varchar(100) comment '调度员',
ddDate datetime comment '调度日期',
fee int comment '费用',
feeContent text comment '费用说明',
ld varchar(100) comment '领导',
ldDate datetime comment '领导确定日期',
ldContent text comment '领导审批说明'
) comment '用车申请';
企业车辆管理系统oracle数据库版本源码:
超级管理员表创建语句如下:
create table t_admin(
id integer,
username varchar(100),
password varchar(100)
);
insert into t_admin(id,username,password) values(1,'admin','123456');
--超级管理员字段加注释
comment on column t_admin.id is '主键';
comment on column t_admin.username is '超级管理员账号';
comment on column t_admin.password is '超级管理员密码';
--超级管理员表加注释
comment on table t_admin is '超级管理员';
车辆表创建语句如下:
create table t_car(
id integer,
carName varchar(100),
pp varchar(100),
xh varchar(100),
sccj varchar(100),
ccrq varchar(100),
cp varchar(100),
status varchar(100)
);
--车辆字段加注释
comment on column t_car.id is '主键';
comment on column t_car.carName is '车辆编号';
comment on column t_car.pp is '品牌';
comment on column t_car.xh is '型号';
comment on column t_car.sccj is '生产厂家';
comment on column t_car.ccrq is '出厂日期';
comment on column t_car.cp is '车牌';
comment on column t_car.status is '状态';
--车辆表加注释
comment on table t_car is '车辆';
车辆费用表创建语句如下:
create table t_carlist(
id integer,
carName varchar(100),
showDate datetime,
content text,
fee int,
lx varchar(100)
);
--车辆费用字段加注释
comment on column t_carlist.id is '主键';
comment on column t_carlist.carName is '车辆编号';
comment on column t_carlist.showDate is '保养日期';
comment on column t_carlist.content is '保养说明';
comment on column t_carlist.fee is '保养费用';
comment on column t_carlist.lx is '';
--车辆费用表加注释
comment on table t_carlist is '车辆费用';
员工表创建语句如下:
create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
headPic varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100),
js varchar(100)
);
--员工字段加注释
comment on column t_customer.id is '主键';
comment on column t_customer.username is '账号';
comment on column t_customer.password is '密码';
comment on column t_customer.customerName is '姓名';
comment on column t_customer.headPic is '头像';
comment on column t_customer.phone is '电话';
comment on column t_customer.age is '年龄';
comment on column t_customer.sex is '';
comment on column t_customer.js is '';
--员工表加注释
comment on table t_customer is '员工';
司机奖励惩罚表创建语句如下:
create table t_jlcf(
id integer,
customerId int,
showDate datetime,
content text,
fee int,
lx varchar(100)
);
--司机奖励惩罚字段加注释
comment on column t_jlcf.id is '主键';
comment on column t_jlcf.customerId is '司机';
comment on column t_jlcf.showDate is '操作日期';
comment on column t_jlcf.content is '说明';
comment on column t_jlcf.fee is '金额';
comment on column t_jlcf.lx is '';
--司机奖励惩罚表加注释
comment on table t_jlcf is '司机奖励惩罚';
用车申请表创建语句如下:
create table t_order(
id integer,
customerId int,
orderNum varchar(100),
title varchar(100),
content text,
jwd varchar(100),
showDate datetime,
status varchar(100),
spy varchar(100),
spyDate datetime,
carName varchar(100),
sjId int,
ddy varchar(100),
ddDate datetime,
fee int,
feeContent text,
ld varchar(100),
ldDate datetime,
ldContent text
);
--用车申请字段加注释
comment on column t_order.id is '主键';
comment on column t_order.customerId is '申请人';
comment on column t_order.orderNum is '订单编号';
comment on column t_order.title is '申请标题';
comment on column t_order.content is '详细说明';
comment on column t_order.jwd is '经纬度';
comment on column t_order.showDate is '用车日期';
comment on column t_order.status is '状态';
comment on column t_order.spy is '审批员';
comment on column t_order.spyDate is '审批日期';
comment on column t_order.carName is '车辆编号';
comment on column t_order.sjId is '司机';
comment on column t_order.ddy is '调度员';
comment on column t_order.ddDate is '调度日期';
comment on column t_order.fee is '费用';
comment on column t_order.feeContent is '费用说明';
comment on column t_order.ld is '领导';
comment on column t_order.ldDate is '领导确定日期';
comment on column t_order.ldContent is '领导审批说明';
--用车申请表加注释
comment on table t_order is '用车申请';
oracle特有,对应序列如下:
create sequence s_t_car;
create sequence s_t_carlist;
create sequence s_t_customer;
create sequence s_t_jlcf;
create sequence s_t_order;
企业车辆管理系统sqlserver数据库版本源码:
超级管理员表创建语句如下:
--超级管理员
create table t_admin(
id int identity(1,1) primary key not null,--主键
username varchar(100),--超级管理员账号
password varchar(100)--超级管理员密码
);
insert into t_admin(username,password) values('admin','123456');
车辆表创建语句如下:
--车辆表注释
create table t_car(
id int identity(1,1) primary key not null,--主键
carName varchar(100),--车辆编号
pp varchar(100),--品牌
xh varchar(100),--型号
sccj varchar(100),--生产厂家
ccrq varchar(100),--出厂日期
cp varchar(100),--车牌
status varchar(100)--状态
);
车辆费用表创建语句如下:
--车辆费用表注释
create table t_carlist(
id int identity(1,1) primary key not null,--主键
carName varchar(100),--车辆编号
showDate datetime,--保养日期
content text,--保养说明
fee int,--保养费用
lx varchar(100)--
);
员工表创建语句如下:
--员工表注释
create table t_customer(
id int identity(1,1) primary key not null,--主键
username varchar(100),--账号
password varchar(100),--密码
customerName varchar(100),--姓名
headPic varchar(100),--头像
phone varchar(100),--电话
age varchar(100),--年龄
sex varchar(100),--
js varchar(100)--
);
司机奖励惩罚表创建语句如下:
--司机奖励惩罚表注释
create table t_jlcf(
id int identity(1,1) primary key not null,--主键
customerId int,--司机
showDate datetime,--操作日期
content text,--说明
fee int,--金额
lx varchar(100)--
);
用车申请表创建语句如下:
--用车申请表注释
create table t_order(
id int identity(1,1) primary key not null,--主键
customerId int,--申请人
orderNum varchar(100),--订单编号
title varchar(100),--申请标题
content text,--详细说明
jwd varchar(100),--经纬度
showDate datetime,--用车日期
status varchar(100),--状态
spy varchar(100),--审批员
spyDate datetime,--审批日期
carName varchar(100),--车辆编号
sjId int,--司机
ddy varchar(100),--调度员
ddDate datetime,--调度日期
fee int,--费用
feeContent text,--费用说明
ld varchar(100),--领导
ldDate datetime,--领导确定日期
ldContent text--领导审批说明
);
登录后主页.jpg?x-oss-process=style/00001)
企业车辆管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计:
车辆javaBean创建语句如下:
package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//车辆
@Table(name = "t_car")
public class Car {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//车辆编号
private String carName;
//品牌
private String pp;
//型号
private String xh;
//生产厂家
private String sccj;
//出厂日期
private String ccrq;
//车牌
private String cp;
//状态
private String status;
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public String getPp() {return pp;}
public void setPp(String pp) {this.pp = pp;}
public String getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
public String getSccj() {return sccj;}
public void setSccj(String sccj) {this.sccj = sccj;}
public String getCcrq() {return ccrq;}
public void setCcrq(String ccrq) {this.ccrq = ccrq;}
public String getCp() {return cp;}
public void setCp(String cp) {this.cp = cp;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
车辆费用javaBean创建语句如下:
package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//车辆费用
@Table(name = "t_carlist")
public class Carlist {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//车辆编号
private String carName;
//保养日期
private Date showDate;
//保养说明
private String content;
//保养费用
private Integer fee;
//
private String lx;
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
}
员工javaBean创建语句如下:
package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//员工
@Table(name = "t_customer")
public class Customer {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//
private String js;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}
司机奖励惩罚javaBean创建语句如下:
package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//司机奖励惩罚
@Table(name = "t_jlcf")
public class Jlcf {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//司机
private Long customerId;
//操作日期
private Date showDate;
//说明
private String content;
//金额
private Integer fee;
//
private String lx;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
}
用车申请javaBean创建语句如下:
package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//用车申请
@Table(name = "t_order")
public class Order {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//申请人
private Long customerId;
//订单编号
private String orderNum;
//申请标题
private String title;
//详细说明
private String content;
//经纬度
private String jwd;
//用车日期
private Date showDate;
//状态
private String status;
//审批员
private String spy;
//审批日期
private Date spyDate;
//车辆编号
private String carName;
//司机
private Long sjId;
//调度员
private String ddy;
//调度日期
private Date ddDate;
//费用
private Integer fee;
//费用说明
private String feeContent;
//领导
private String ld;
//领导确定日期
private Date ldDate;
//领导审批说明
private String ldContent;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getJwd() {return jwd;}
public void setJwd(String jwd) {this.jwd = jwd;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getSpy() {return spy;}
public void setSpy(String spy) {this.spy = spy;}
public Date getSpyDate() {return spyDate;}
public void setSpyDate(Date spyDate) {this.spyDate = spyDate;}
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public Long getSjId() {return sjId;}
public void setSjId(Long sjId) {this.sjId = sjId;}
public String getDdy() {return ddy;}
public void setDdy(String ddy) {this.ddy = ddy;}
public Date getDdDate() {return ddDate;}
public void setDdDate(Date ddDate) {this.ddDate = ddDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getFeeContent() {return feeContent;}
public void setFeeContent(String feeContent) {this.feeContent = feeContent;}
public String getLd() {return ld;}
public void setLd(String ld) {this.ld = ld;}
public Date getLdDate() {return ldDate;}
public void setLdDate(Date ldDate) {this.ldDate = ldDate;}
public String getLdContent() {return ldContent;}
public void setLdContent(String ldContent) {this.ldContent = ldContent;}
}
企业车辆管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
车辆javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//车辆
public class Car extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//车辆编号
private String carName;
//品牌
private String pp;
//型号
private String xh;
//生产厂家
private String sccj;
//出厂日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private String ccrq;
//车牌
private String cp;
//状态
private String status;
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public String getPp() {return pp;}
public void setPp(String pp) {this.pp = pp;}
public String getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
public String getSccj() {return sccj;}
public void setSccj(String sccj) {this.sccj = sccj;}
public String getCcrq() {return ccrq;}
public void setCcrq(String ccrq) {this.ccrq = ccrq;}
public String getCp() {return cp;}
public void setCp(String cp) {this.cp = cp;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
车辆费用javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//车辆费用
public class Carlist extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//车辆编号
private String carName;
//保养日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//保养说明
private String content;
//保养费用
private Integer fee;
//
private String lx;
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
}
员工javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//员工
public class Customer extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//
private String sex;
//
private String js;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}
司机奖励惩罚javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//司机奖励惩罚
public class Jlcf extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//司机
private Long customerId;
//操作日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//说明
private String content;
//金额
private Integer fee;
//
private String lx;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getLx() {return lx;}
public void setLx(String lx) {this.lx = lx;}
}
用车申请javaBean创建语句如下:
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//用车申请
public class Order extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//申请人
private Long customerId;
//订单编号
private String orderNum;
//申请标题
private String title;
//详细说明
private String content;
//经纬度
private String jwd;
//用车日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date showDate;
//状态
private String status;
//审批员
private String spy;
//审批日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date spyDate;
//车辆编号
private String carName;
//司机
private Long sjId;
//调度员
private String ddy;
//调度日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date ddDate;
//费用
private Integer fee;
//费用说明
private String feeContent;
//领导
private String ld;
//领导确定日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date ldDate;
//领导审批说明
private String ldContent;
public Long getCustomerId() {return customerId;}
public void setCustomerId(Long customerId) {this.customerId = customerId;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getJwd() {return jwd;}
public void setJwd(String jwd) {this.jwd = jwd;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getSpy() {return spy;}
public void setSpy(String spy) {this.spy = spy;}
public Date getSpyDate() {return spyDate;}
public void setSpyDate(Date spyDate) {this.spyDate = spyDate;}
public String getCarName() {return carName;}
public void setCarName(String carName) {this.carName = carName;}
public Long getSjId() {return sjId;}
public void setSjId(Long sjId) {this.sjId = sjId;}
public String getDdy() {return ddy;}
public void setDdy(String ddy) {this.ddy = ddy;}
public Date getDdDate() {return ddDate;}
public void setDdDate(Date ddDate) {this.ddDate = ddDate;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getFeeContent() {return feeContent;}
public void setFeeContent(String feeContent) {this.feeContent = feeContent;}
public String getLd() {return ld;}
public void setLd(String ld) {this.ld = ld;}
public Date getLdDate() {return ldDate;}
public void setLdDate(Date ldDate) {this.ldDate = ldDate;}
public String getLdContent() {return ldContent;}
public void setLdContent(String ldContent) {this.ldContent = ldContent;}
}