|
|
@ -2,6 +2,8 @@ package com.jianshui.invoice.domain; |
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.jianshui.common.annotation.Excel; |
|
|
|
import com.jianshui.common.annotation.Excel; |
|
|
|
import com.jianshui.common.core.domain.BaseEntity; |
|
|
|
import com.jianshui.common.core.domain.BaseEntity; |
|
|
@ -109,6 +111,10 @@ public class BillDetail extends BaseEntity |
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
|
|
|
private Date updatedTime; |
|
|
|
private Date updatedTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//煤炭种类代码
|
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
|
|
|
|
private String mtzldm; |
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) |
|
|
|
public void setId(Long id) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this.id = id; |
|
|
|
this.id = id; |
|
|
@ -317,6 +323,14 @@ public class BillDetail extends BaseEntity |
|
|
|
return updatedTime; |
|
|
|
return updatedTime; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMtzldm() { |
|
|
|
|
|
|
|
return mtzldm; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setMtzldm(String mtzldm) { |
|
|
|
|
|
|
|
this.mtzldm = mtzldm; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
public String toString() { |
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
|
|
|